Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to return a formatted number by String.format in English?

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:

enter image description here

like image 562
Hamidreza Samadi Avatar asked Dec 20 '22 08:12

Hamidreza Samadi


1 Answers

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.

like image 144
jjm Avatar answered Mar 03 '23 23:03

jjm