public static boolean isNumeric(String str) {
Boolean isNumber = str.matches("-?[0-9]+.?[0-9]*");
return isNumber;
}
public static boolean isNumeric(String str) {
Boolean isNumber = str.matches("-?[0-9]+.?[0-9]*");
return isNumber;
}