Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a series of BigDecimal numbesr (ex:123456.78) that I want to add commas to so they look like 123,456.78, so I converted them to a string and used this code

private static String insertCommas(String str) {
    if(str.length() < 4){
        return str;
    }

    return insertCommas(str.substring(0, str.length() - 3)) + 
        "," +         
        str.substring(str.length() - 3, str.length());
}

to do that. The problem is that when I run insertCommas(str) it prints 123,456,.78, and I cannot figure out a way to stop to prevent the comma being next to the decimal.

--

And another thing, It has to work for large and small numbers, which is why I used the code above instead of simpler ones.

I have also tried DecimalFormat("#,##0.00") and similar types but when the numbers reach a certain point, they get replaced with zeros, making me lose information about the number.

help?

share|improve this question
If this is a homework or interview problem, that is fine, but please specify. – dseibert Oct 28 '12 at 15:42
3  
NumberFormatter can take do what you request. docs.oracle.com/javase/1.4.2/docs/api/javax/swing/text/… – dseibert Oct 28 '12 at 15:43

3 Answers

up vote 2 down vote accepted

There's an easier way to do this. You just have to use SimpleDecimalFormat

private static String insertCommas(BigDecimal number) {
  // for your case use this pattern -> #,##0.00
  DecimalFormat df = new DecimalFormat("#,##0.00");
  return df.format(number);
}

private static String insertCommas(String number) {
  return insertCommas(new BigDecimal(number));
}

You can learn new pattern and more here: DecimalFormat API

Hope this helps :)

share|improve this answer
The problem is that it has to be flexible: It has to work for 123,213,432,322.65 as well as 1,234.17 – nmd Oct 28 '12 at 16:29
But It was my fault for not specifying that, I edited my original Question. – nmd Oct 28 '12 at 16:40
It is flrxible. By using #,##0.00 you will have a 123,456,789.00. If you set the pattern to #,##0,000.00 you can have 123,456,789.00 also, but not 123.00 since it will be converted to 0,123.00. Please read the pattern section of the API. You should find what you need there. Including prefixes such as '$' or 'USD' – Iqbal Djulfri Oct 28 '12 at 17:00
Unfortunately, its not very flexible, the number 377,789,318,629,571,624,960.00 gets converted into the number 377,789,318,629,571,600,000.00 (yes it is very important that its precise) – nmd Oct 28 '12 at 17:51
I have updated my answer. I forget that you need BigDecimal instead of double. I have tested my answer with 12345678910111213141516171819.20 and came up with 12,345,678,910,111,213,141,516,171,819.20 as the answer. – Iqbal Djulfri Oct 29 '12 at 0:52
show 2 more comments

Have a look at Java's Formatting Numeric Print Output tutorial. That will teach you how to format your number either during printing, or conversion to a String.

share|improve this answer
Already been there. I tried it but it left a bunch of zero's at the end larger number – nmd Oct 28 '12 at 20:00

If you insist to make your function work, you can use this:

private static String insertCommas(String str) {
    if(str.length() < 4){
        return str;
    }

    String[] tokens = str.split("[.]");
    return insertCommas(tokens[0].substring(0, tokens[0].length() - 3)) +
        "," +
        str.substring(tokens[0].length() - 3, tokens[0].length()) +
        ((tokens.length > 1) ? ("." + tokens[1]) : "");
}
share|improve this answer
I tried your code, but for some reason it doesn't work for large numbers. – nmd Oct 28 '12 at 16:41
What number you've tried? I tested with the number given: '12345.78' – Roozbeh Oct 28 '12 at 16:44
I put the number 1342177.27 I guess the problem is that I left out the fact that its inside of a giant for loop, so there is a large amount of large numbers being dealt with. – nmd Oct 28 '12 at 17:43
Thanks for your comment. I edit the code to make it work for big numbers. – Roozbeh Oct 29 '12 at 13:59

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.