1. Formatting error in EU 4.0.2
- Posted by FredRansom Jun 15, 2011
- 1212 views
The following code resulted in truncated output:
-- temp.ex sequence A = "some stuff", B B = sprintf ("A = %s", A) ? B
2. Re: Formatting error in EU 4.0.2
- Posted by mattlewis (admin) Jun 15, 2011
- 1200 views
FredRansom said...
The following code resulted in truncated output:
-- temp.ex sequence A = "some stuff", B B = sprintf ("A = %s", A) ? B
To get what you want, you need to do this:
-- temp.ex sequence A = "some stuff", B B = sprintf ("A = %s", {A}) ? B
Note the brackets around A as the second argument to printf().
Matt
3. Re: Formatting error in EU 4.0.2
- Posted by FredRansom Jun 15, 2011
- 1201 views
Must use sprintf ("A = %s", {A}) instead. Thank you, Matt.