vote up 1 vote down star
2
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...

flag

71% accept rate

5 Answers

vote up 7 vote down check

Try the format function.

Label1.Caption := Format('%.0n', [i + 0.0]);
link|flag
vote up 3 vote down

s := FormatFloat('#,##0', i);

link|flag
vote up 3 vote down

Or if you need to be threadsafe or want to ensure you use the system default locale or want to specify one:

function FormatIntFromLCID(const AValue: Integer; const LCID: Integer = LOCALE_SYSTEM_DEFAULT): string;
var
  AFormatSettings: TFormatSettings;
begin
  GetLocaleFormatSettings(LCID, AFormatSettings);
  Result := FormatFloat('#,##0',AValue, AFormatSettings);
end;

see this post for a more complete discussion about formatting/locales

link|flag
vote up 0 vote down

stringreplace(format('%n',[1234567.0]),'.00','',[]);

link|flag
vote up 0 vote down

Format('%n', [12345.678]);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.