Menu
  • HOME
  • TAGS

How to do a culture invariant conversion from int to String in Java?

java,c#,type-conversion,invariantculture

or does Integer.ToString(int) inherently does culture invariant conversion? It does. The documentation isn't as clear as it might be, but it doesn't use any grouping separators, negative numbers are always prefixed with '-', and ASCII digits are always used....