/**
* 判断字符串是否是整数或小数
* @param str
* @return
*/
public static boolean isNumeric(String str) {
Pattern pattern = Pattern.compile("[0-9]+(.[0-9]+)?");
return pattern.matcher(str).matches();
}
Java常用工具总结
最新推荐文章于 2024-05-28 18:10:55 发布
/**
* 判断字符串是否是整数或小数
* @param str
* @return
*/
public static boolean isNumeric(String str) {
Pattern pattern = Pattern.compile("[0-9]+(.[0-9]+)?");
return pattern.matcher(str).matches();
}