Reputation: 637
When I using String.format
method, if my phone language be Farsi this method return the formatted number in Farsi language. but I want to use an English formatted number.
I using this code:
String.format("%.02f", myNumber)
my question in picture:
Upvotes: 4
Views: 4263
Reputation: 6198
I think you need to use the String.format(Locale, String, ...)
method with an English Locale instance, probably with Locale.ENGLISH
. This will tell String.format to use English number formatting instead of Farsi.
Upvotes: 12