Articles   Members Online: 3
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to Format Float with Comma Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
21-Jan-03
Category
Algorithm
Language
Delphi 2.x
Views
129
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Lou Adler

Format Float with Comma

Answer:
1   
2   function FormatNum(Value: Extended; Decimal: Integer): string;
3   var
4     SLen, SPos: Integer;
5     SVal: string;
6   begin
7     Str(Value: 0: Decimal, SVal);
8     SLen := Length(SVal);
9     if Decimal = 0 then
10      SPos := SLen - 2
11    else
12      SPos := SLen - (Decimal + 3);
13    while SPos > 1 do
14    begin
15      Insert(',', SVal, SPos);
16      SPos := SPos - 3;
17    end;
18    Result := SVal;
19  end;
20  
21  //Also, you can simply do this:
22  
23  i: Extended;
24  s: string;
25  
26  i := 1000.123456;
27  s := Format('%.2n', [i]);


The value of s will be 1,000.12

You can also add your own characters, so you could do something like this:

s := Format('$%.2n', [i]);

This would output $1,000.12

So, good luck in your number to string formatting.

			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC