Jak sprawdzić, czy ciąg jest podwójny, czy nie w Javie
String decimalPattern = "([0-9]*)\\.([0-9]*)";
String number="20.00";
boolean match = Pattern.matches(decimalPattern, number);
System.out.println(match); //if true then decimal else not
Adorable Addax