I have
String str = "$2,542";
I want to format this string to:
"$2,542.00"
Is it possible to achieve this with java String.format() method???
I have
String str = "$2,542";
I want to format this string to:
"$2,542.00"
Is it possible to achieve this with java String.format() method???