您的位置 首页 java

java判断字符串是否是整型数字

代码示例:

/**     * 判断字符串是否为数字     */    public static boolean isNumeric(String str){         Pattern pattern = Pattern.compile("[0-9]*");         Matcher isNum = pattern.matcher(str);        return isNum.matches();       }

(免费视频教程推荐:java视频教程)

测试:

public static void main(String[] args) {String str = "11";String str1 = "11sdf";System.out.println(isNumeric(str));System.out.println(isNumeric(str1));}

输出结果:

truefalse

相关文章教程推荐:java入门教程

文章来源:智云一二三科技

文章标题:java判断字符串是否是整型数字

文章地址:https://www.zhihuclub.com/15058.shtml

关于作者: 智云科技

热门文章

网站地图