java如何判断字符串中是否含有数字

发布网友 发布时间:2022-04-22 03:08

我来回答

3个回答

热心网友 时间:2023-06-23 09:31

一、算法思想

从字符串的第一个字符开始,逐个判断字符是否是数字,若是数字,说明字符串中包含数字,否则继续判断下一个字符,直到找到数字或到字符串结束也没有发现数字。


二、操作过程

        J a v a    2    E n t e r p r i s e    E d i t i o n
        ^(不是数字)
          ^(不是数字)
            ^(不是数字)
              ^(不是数字)
                  ^(不是数字)
                    ^(是数字,结束)


三、程序代码

public class Main {
public static void main(String[] args) {
System.out.println(containDigit("Java 2 Enterprise Edition"));
}

/**
 * 判断字符串中是否包含数字
 * @param source 待判断字符串
 * @return 字符串中是否包含数字,true:包含数字,false:不包含数字
 */
public static boolean containDigit(String source) {
char ch;
for(int i=0; i<source.length(); i++) {
ch = source.charAt(i);
if(ch >= '0' && ch <= '9') {
return true;
}
}

return false;
}
}


四、运行测试

true

热心网友 时间:2023-06-23 09:31

如果只是判断,可与用Integer.parseInt(String)如果是数字,就没有异常,如果有异常,就不是数字或者用正则表达式 return string.matches("\\d+\\.?\\d*")); 这个语句就是用来判断的 \\d+表示一个或者多个数字\\.? 表示一个或这没有小数点 \\d * 表示0个或者多个数字

热心网友 时间:2023-06-23 09:32

str.matches("([\\w\\W]*)[0-9]*([\\w\\W]*)")

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com