欢迎来到天天文库
浏览记录
ID:52314465
大小:23.00 KB
页数:2页
时间:2020-03-26
《判断字符串中是否包含汉字.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、判断字符串中是否包含汉字Java认证考试中通常会涉及到判断字符串中是否包含汉字,现把代码公布如下:Java代码importjava.util.regex.Matcher;importjava.util.regex.Pattern;publicclassIfHanZi{publicstaticvoidmain(String[]args){//方法一:Strings1=“我是中国人”;Strings2=“imchinese”;Strings3=“im中国人”;System.out.println(s1+“:”+newString(s1).
2、length());System.out.println(s2+“:”+newString(s2).length());System.out.println(s3+“:”+newString(s3).length());System.out.println((s1.getBytes().length==s1.length())?“s1无汉字”:“s1有汉字”);System.out.println((s2.getBytes().length==s2.length())?“s2无汉字”:“s2有汉字”);System.out.print
3、ln((s3.getBytes().length==s3.length())?“s3无汉字”:“s3有汉字”);//方法二:intcount=0;StringregEx=“[\u4e00-\u9fa5]”;Stringstr=“中文fd我是中国人as”;Patternp=Pattern.compile(regEx);Matcherm=p.matcher(str);while(m.find()){for(inti=0;i《=m.groupCount();i++){count=count+1;}}System.out.println(
4、“共有”+count+“个”);}}
此文档下载收益归作者所有