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.

Possible Duplicate:
Format Number like StackoverFlow (rounded to thousands with K suffix)

How can I format numbers in C# so 12523.57 becomes "12K", 2323542.32 becomes "2M", etc?

I don't know how to append the correct number abbreviation (K, M, etc) and show the appropriate digits?

So,

1000 = 1K  
2123.32 = 2K  
30040 = 30k  
2000000 = 2M  

Is there a built in way in C# to do this?

share|improve this question
3  
this is a duplicate of stackoverflow.com/questions/2134161/… – Pharabus Mar 9 '10 at 20:06
1  
No, it isn't. That deals with specifically formating for only one suffix, "K". – Teradact Mar 9 '10 at 20:06
and why "M" then? – Fredou Mar 9 '10 at 20:08
Maybe this is closer: stackoverflow.com/questions/128618/c-file-size-format-provider . @Teradact - you only need minor tweaks to make it work, the code is basically the same. – Kobi Mar 9 '10 at 20:10
look through the comments on the answer—there is a one-liner that enables the use of M as well. – Јοеу Mar 9 '10 at 20:12

marked as duplicate by Fredou, Robert Greiner, Fredrik Mörk, Јοеу, Hans Passant Mar 9 '10 at 20:13

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

I don't think this is standard functionality in C#/.Net, but it's not that difficult to do this yourself. In pseudocode it would be something like this:

if (number>1000000)
   string = floor(number/1000000).ToString() + "M";
else if (number > 1000)
   string = floor(number/1000).ToString() + "K";
else
   string = number.ToString();

If you don't want to truncate, but round, use round instead of floor.

share|improve this answer

There's no built in way, you'll have to roll your own routine, similar to this:

public string ConvertNumber(int num)
{
    if (num>= 1000)
        return string.Concat(num/ 1000, "k");
    else
        return num.ToString();
}
share|improve this answer

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