1、判断String是否为空

str = "hdiwhegj";

if(str.equals("")){

System.out.println("字符串为空");

}

2、判断String类型里的数字大小

这里正常情况下直接将String类型int就行,但是我既要判断String为空又要判断里面的数字

    str = "7667";
    int = num;
        try {
                num = Integer.parseInt(str);
                if (num<=0||num>29799966){
                    System.out.println("在指定范围内");
                }
            } catch (NumberFormatException e) {}
        if (str.equals("")){
                System.out.println("字符串为空");
            }

3、判断String里是否字母或数字加字母(注:若你有判断字符串里数字大小建议将这个放下下面)

str = "d6sa7dja9"
if (str.matches("[0-9a-zA-Z]*")){
     System.out.println("有字母和数字");
}

4、判断字符串是否包含文字字符

str = "jdoa加油";
Pattern p = Pattern.compile("[u4E00-u9FA5|\!|\,|\。|\(|\)|\《|\》|\“|\”|\?|\:|\;|\【|\】]");
Matcher m = p.matcher(str);
f (!m.find()){
System.out.println("有汉字和字符");
}

原文地址:https://blog.csdn.net/weixin_53053828/article/details/129797115

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_12097.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注