I am trying to pass a string with random values with different currency formats:
1,222.50
1.222,50
1222.5
1222,500
1222
To a double to be able to insert it in the database. So far I have the following code:
String a1, a2;
a1 = "1.100,50";...
asked on
31.01.2017 / 14:24