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?
