Java 11
I'm dealing with Czech karona currency and need to display
50427.1 as 50 427,10 Kč
Tried,
System.out.println(new java.text.DecimalFormat("## ###,00 Kč").format(Double.valueOf("50427.1")));
But its printing as
5,04,27 Kč
How can i make it to display in the correct format?