vote up 1 vote down star

How do I format a number to look like this: 9,000 my database field is in money data type, when I pull it up I see it like this: 9000.0000 that don't look right to me (I would like it to look like a real money format)

Sorry folks, forgot to mention technology it would be in C#

Thanks!

flag

44% accept rate
2  
You just need to do `FORMAT THIS AS MONIES PLZ: some_value", provided you are programming in a language wherein that code works. – Pesto May 4 at 16:58
@Pesto: I'm tempted to see if that works in lolcode. If not... someone needs to make it work in lolcode. ;) – R. Bemrose May 4 at 20:58

4 Answers

vote up 2 vote down

While you could call string.format, I think it's easier to just call ToString on it.

decimal money = 9000m;
string formattedMoney = money.ToString("C");
link|flag
vote up 0 vote down

You need to do a "formatting" function (in whatever language you're using) that will return the data in a currency format. Another answer already describes the code in C#. Here's vbscript:

Dim Amount
Amount = 2000
Response.Write(FormatCurrency(Amount))

How your database viewing application reads the data and how it is actually stored in the database may be two different things.

link|flag
vote up 3 vote down
decimal money = 1000;
Response.Write(string.Format("{0:C}", money));

The above is an example in C#.

link|flag
Response.Write(string.Format("{0:C}", money)) would also be the equivalent in VB .NET since its really the framework doing the formatting, not the language – Joseph May 4 at 17:03

Your Answer

Get an OpenID
or

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