0
Error in sum of Persian numbers with %,d format
I use %,d to thousand separator for my numbers, But when run program, my numbers showed as persian number and can not sum numbers. I use replace.all(“,”, “”) but it does not work.
1 Odpowiedź
0
use:
string.format(Locale.us, “%,d”, object);
just this