public class MainWindow {
public static void main(String[] args) {
String s = "88,24";
if(s.contains(",")){
s.replaceAll(",", ".");
System.out.println(s);
}
}
}
For the new application I'm working on I have to be able to replace a , with a . but I've had no success yet. Does anyone know of a way to do this?