Java中 Character方法练习:字符串中英文字母个…

2018-06-18 03:49:42来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

package com.swift;

public class String_Letter_Number_Test {

    public static void main(String[] args) {
        /*
         * 字符串中英文字母个数 5435abc54abc3AHJ5
         */
        String str="5435abc54abc3AHJ5";
        char[] arr=str.toCharArray();
        
        int num=0;
        for(char c:arr) {
            if(Character.isLetter(c)) {
                num++;
            }
        }
        System.out.println("The numbers of letter int the String is :"+num);

    }

}

 正则 

package com.swift;

public class String_Letter_Number_Test {

    public static void main(String[] args) {
        /*
         * 字符串中英文字母和数字的个数 5435abc54abc3AHJ5
         */
        String str="5435ab,;‘’c54abc,.?/3AHJ5";
        char[] arr=str.toCharArray();
        
        int num=0;
        for(char c:arr) {
//            if(Character.isLetter(c)) {
//                num++;
//            }
            
            System.out.println(c);
            if(String.valueOf(c).matches("[a-zA-Z0-9]{1}")) {  //  "\\w" 表示匹配字母数字下划线
                num++;
            }
        }
        System.out.println("The numbers of letter int the String is :"+num);

    }

}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Servlet和JSP之有关Servlet和JSP的梳理(一)

下一篇:正则表达式