其他分享
首页 > 其他分享> > 各位,在判断字符串是否以数字开头时的方法

各位,在判断字符串是否以数字开头时的方法

作者:互联网

 代码如下,一定记着“.”

    public static boolean isStartWithNumber(String str) {
        Pattern pattern = Pattern.compile("[0-9].*");//一定记住加“.”
        Matcher isNum = pattern.matcher(str.charAt(0)+"");
        if (!isNum.matches()) {
            return false;
        }
        return true;
    }

一定记住正则表达式有点要加上,网上资料好多没有的,调了好久。

标签:各位,return,str,Pattern,isNum,开头,pattern,字符串,记住
来源: https://blog.csdn.net/flowery_/article/details/100180994