判断字符是否是数字
程序员文章站
2022-06-11 14:58:34
...
public static boolean isInteger(String str) {
Pattern pattern = Pattern.compile("^[-\\+]?[\\d]*$");
return pattern.matcher(str).matches();
}
上一篇: Nginx随笔