When using toString(), Double adds commas (5143 is printed as 5,143). How to disable the commas?

link|improve this question

60% accept rate
I don't get a separator with this code: String str = Double.toString(5143); – tur1ng Feb 11 '10 at 7:34
why do you need such a thing? decimal separator has a meaning – Bozho Feb 11 '10 at 7:36
1  
@tur1ng: your locale settings are different from Erik's settings. @Bozho: it's not a decimal separator, it's a thousands separator used to group digits in some locales. Quite a weird practice, IMHO - to further mess things up, the same symbol (,) is used as a decimal separator in some locales. – Joonas Pulakka Feb 11 '10 at 7:45
It is not necessarily decimal separator. For example, in Russian locale , is a digit grouping symbol, while decimal separator is .. So what looks as 5143.5 in US locale is 5,143.5 in Russian one. – Rorick Feb 11 '10 at 7:51
feedback

7 Answers

up vote 8 down vote accepted

Your problem belongs to Locale, as pointed out correctly by Rorick. However, you should look into DecimalFormat class, in case changing Locale means mess up all the things.

Look at NumberFormat class, to deal with thousand separator. Because it seems your case is regarding thousand separator instead.

link|improve this answer
feedback

Probably, you have to change your locale settings. It is taken by default from system locale, but you can override this. Read javadoc on Locale class and this little tutorial to start. Locale can be specified through command line:

java -Duser.language=en -Duser.region=US MyApplication
link|improve this answer
+1. Actually I was in the midst of writing the same thing. Anyways, I wrote a complementary post. :) – Adeel Ansari Feb 11 '10 at 7:38
feedback

Java has excellent support for formatting numbers in text in different locales with the NumberFormat class:

With current locale:

NumberFormat.getNumberInstance().format(5000000);

will get you (with swedish locale) the string: 5 000 000

...or with a specific locale (e.g. french, which also results in 5 000 000):

NumberFormat.getNumberInstance(Locale.FRANCE).format(5000000);
link|improve this answer
feedback

As far as I am aware, you can not disable what the toString() method returns.

My solution would be as follows:

someDouble.toString().replaceAll(",", "");

Not the most elegant solution, but it works.

link|improve this answer
2  
It's a hack, not a solution, imho. – Rorick Feb 11 '10 at 7:54
+1 because I wrote the same :). I don't find it 'not elegant' (and even better than the locale handling in the other post), cause it has no side effects and does exactly what is intended. – Kai Feb 11 '10 at 7:54
@Rorick: It's not only a solution, it's the best one. – Kai Feb 11 '10 at 7:55
1  
If only your program is for your personal home usage. – Rorick Feb 11 '10 at 8:00
If you want no commas, it's a everywhere-solution. If you want no separators at all you have to enhanced it (but similar!!). If you want to solve this by manipulating the locale, you have side effects and you can't be sure what's happening somewhere else or you need to run the program in Romania (and everywhere else) with your US locale. So if the problem is to format Doubles (and not Dates or Currencies or ....) then solve it by formatting Doubles. >If only your program is for your personal home usage.< The opposite is true. – Kai Feb 11 '10 at 8:15
feedback

Three ways:

  1. Using the DecimalFormat

    DecimalFormat df = new DecimalFormat();
    DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();
    dfs.setGroupingSeparator(Character.MAX_VALUE);
    df.setDecimalFormatSymbols(dfs);
    System.out.println(df.format(doubleVar));
    
  2. (as suggested by others) just replace the comma in the string that you get

  3. Set the locale on load of your VM
link|improve this answer
feedback
myDouble.toString().replaceAll(",", "");
link|improve this answer
Checkout the Bozho's post there, stackoverflow.com/questions/2242878/…. His point is quite valid and make a lot of sense. – Adeel Ansari Feb 11 '10 at 8:07
I have to admit I don't get his point at all... It seems like he's talking about the decimal separator and not the digit group separator (which this question is about). – Kai Feb 11 '10 at 8:54
@kai1968: The example he provided is of integer value, and mentioned that, Double adds comma. So, I tend to agree. I think he needs to come back to clear the confusion here. – Adeel Ansari Feb 11 '10 at 9:31
feedback

Double result= 5143.0 Sysout(result.toString()) gives me 5143.0... can u put the code for which u got so

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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