程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> java正則表達式應用的實例代碼

java正則表達式應用的實例代碼

編輯:JAVA編程入門知識
String str = "n1e你v00a?Az$Z000?#99?9900瞇2_悄s3你y4@好?!6求救你d75a8t";
Pattern p= Pattern.compile("[\u4e00-\u9fa5]");//把漢字截取出來。
Matcher m= p.matcher(str);
while(m.find()){
System.out.print(m.group());
}

String str = "n1e你v00a?Az$Z000?#99?9900瞇2_悄s3你y4@好?!6求救你d75a8t";
String a = "";
String b = "";
String d = "";
String s = "";
for(int i = 0;i<str.length();i++){
char c = str.charAt(i);
if(48<=c && c<=58){
a+=c;
} else if(64<=c && c<=91){
b+=c;
}else if(96<=c && c<=123){
b+=c;
}else{
if(((String.valueOf(c)).getBytes().length)>1){
d+=c;
}else{
s+=c;
}
}

}
System.out.println(a);
System.out.println(b);
System.out.println(d);
System.out.println(s);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved