var i : integer;
i := 1234567;
Given the above, I want the string "1,234,567" as output (assuming UK locale). IntToStr just gives me "1234567". I'm sure there's a one-liner for this, but I can't find it...
|
2
|
Given the above, I want the string "1,234,567" as output (assuming UK locale). IntToStr just gives me "1234567". I'm sure there's a one-liner for this, but I can't find it...
|
||
|
|
|
|
Try the format function.
|
||
|
|
|
|
s := FormatFloat('#,##0', i); |
||
|
|
|
|
Or if you need to be threadsafe or want to ensure you use the system default locale or want to specify one:
see this post for a more complete discussion about formatting/locales |
||
|
|
|
|
stringreplace(format('%n',[1234567.0]),'.00','',[]); |
||
|
|
|
|
Format('%n', [12345.678]); |
||
|
|