If I have a number that is 100,000,000 how can I represent that as "100M" in a string?
|
|
To my knowledge there's no library support for abbreviating numbers, but you can easily do it yourself:
Of course, this assumes that you don't want to shorten a number like 1,234,567.89. If you do, then this question is a duplicate. |
|||||||
|
|
There is an algorithm to do that: You need a map that looks like
... and so on... 1) Take the number "num", calculate the log10 exponent "ex" of the number and floor it.
2) Now iterate thru the keys of the hash map above and look if a key matches, if not take the key that is smaller than the exponent "ex". 3) Update "ex" to this key! 4) Now format the number like num = num / pow(10, ex) (!! ex is a key of the hash map !!) 5) now you could round the number to a certain precision and output An example:
|
||||
|
|
|
Here's my solution to make it a little more generic:
|
|||
|
|