Android中判斷字符串中必須包含字母或者數(shù)字
更新時間:2015年10月25日 16:35:03 投稿:hebedich
這篇文章主要介紹了Android中判斷字符串中必須包含字母或者數(shù)字的相關資料,需要的朋友可以參考下
public static boolean isLetterDigit(String str){
boolean isDigit = false;//定義一個boolean值,用來表示是否包含數(shù)字
boolean isLetter = false;//定義一個boolean值,用來表示是否包含字母
for(int i=0 ; i
if(Character.isDigit(str.charAt(i))){ //用char包裝類中的判斷數(shù)字的方法判斷每一個字符
isDigit = true;
}
if(Character.isLetter(str.charAt(i))){ //用char包裝類中的判斷字母的方法判斷每一個字符
isLetter = true;
}
}
String regex = "^[a-zA-Z0-9]+$";
boolean isRight = isDigit && isLetter&&str.matches(regex);
return isRight;
}
android判斷EditText輸入的數(shù)字、中文還是字母方法
String txt = edInput.getText().toString();
Pattern p = Pattern.compile("[0-9]*");
Matcher m = p.matcher(txt);
if(m.matches() ){
Toast.makeText(Main.this,"輸入的是數(shù)字", Toast.LENGTH_SHORT).show();
}
p=Pattern.compile("[a-zA-Z]");
m=p.matcher(txt);
if(m.matches()){
Toast.makeText(Main.this,"輸入的是字母", Toast.LENGTH_SHORT).show();
}
p=Pattern.compile("[\u4e00-\u9fa5]");
m=p.matcher(txt);
if(m.matches()){
Toast.makeText(Main.this,"輸入的是漢字", Toast.LENGTH_SHORT).show();
}
相關文章
Android SDK Manager更新、下載速度慢問題解決辦法
這篇文章主要介紹了Android SDK Manager更新、下載速度慢問題解決辦法的相關資料,需要的朋友可以參考下2017-05-05
Flutter中使用setState時的6個簡單技巧總結(jié)
平常在使用flutter的控件時我們都知道,要刷新頁面那么只需要調(diào)用setState()方法即可,這篇文章主要給大家介紹了關于Flutter中使用setState時的6個簡單技巧,需要的朋友可以參考下2022-05-05

