[stackoverflow] [progress Openedge Abl] Progress Abl Format Decimal Number Without Leading...

Status
Not open for further replies.
X

xander

Guest
I just want to format a decimal number for output to a simple CSV formatted file. I feel like I'm stupid, but I can't find a way to do it without leading zeroes or spaces, of course I can simply trim the leading spaces, but there has to be a proper way to just format like I that, isn't there?

Example

define variable test as decimal.
define variable testString as character.
test = 12.3456.
testString = string(test, '>>>>>9.99').
message '"' + testString + '"' view-as alert-box. /* " 12.35" */


I tried using >>>>>9.99 and zzzzz9.99 for the number format, but both format the string with leading spaces. I actually have no idea what the difference is between using > and z.

Continue reading...
 
Status
Not open for further replies.
Top