Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I like to format all numbers like in math. is there a predefined function or is that just possible with substring and replace?

edit: my culture is de-ch

Best regards

share|improve this question
1  
which language/culture is that? – DrJokepu Jan 20 '10 at 10:08
For 1000000 why would you have two different group separators? Out of interest, which country are you in? I've never seen apostrophes (backwards or forwards) used for group separators - it's normally a comma, space or dot in my experience. – Jon Skeet Jan 20 '10 at 10:09
i don't have two... this is a mistake.. im sry – snarebold Jan 20 '10 at 10:31
@JonSkeet It's automatically converting the apostrophes in two different ways; there doesn't appear to be a way to stop it. – Josh Lee Jan 20 '10 at 10:31
@Jon Skeet: In Switzerland, for example, the apostrophe is used as group separator. – DrJokepu Jan 21 '10 at 9:26
show 1 more comment

5 Answers

up vote 5 down vote accepted

Try this

int input = Convert.ToInt32("1700");
string result = String.Format("{0:##,##}", input);

Or this

Console.WriteLine(1700.ToString("##,##", new NumberFormatInfo() { NumberGroupSeparator = "'" })); 
share|improve this answer
works perfectly, also with different cultures. thank you. – snarebold Jan 20 '10 at 10:41
var numformat = new NumberFormatInfo {
                   NumberGroupSeparator = "'",
                   NumberGroupSizes = new int[] { 3 },
                   NumberDecimalSeparator = "."
                };
Console.WriteLine(1000000.ToString("N",numformat));
share|improve this answer

Try this:

Console.WriteLine(1000000.ToString("#,##0").Replace(
    CultureInfo.CurrentCulture.NumberFormat.NumberGroupSeparator, "'"));

Or

NumberFormatInfo likeInMath = new NumberFormatInfo()
{
    NumberGroupSeparator = "'"
};
Console.WriteLine(1000000.ToString("#,##0", likeInMath));
share|improve this answer
That doesn't work on my machine. It prints 1 000 000. My culture is nb-NO – Svish Jan 20 '10 at 10:13
@Svish, just fixed that, take a look – Rubens Farias Jan 20 '10 at 10:15

use int.ToString() and an iFormatProvider.

also take a look here msdn.

share|improve this answer

I always Use this format

 "#,##0;#,##0'-';0"

so You can use it in

 int input = Convert.ToInt32("100000000");  
 string result = String.Format("{#,##0;#,##0'-';0}", input);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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