欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android中判斷字符串中必須包含字母或者數(shù)字

 更新時(shí)間:2015年10月25日 16:35:03   投稿:hebedich  
這篇文章主要介紹了Android中判斷字符串中必須包含字母或者數(shù)字的相關(guān)資料,需要的朋友可以參考下

public static boolean isLetterDigit(String str){
  boolean isDigit = false;//定義一個(gè)boolean值,用來(lái)表示是否包含數(shù)字
     boolean isLetter = false;//定義一個(gè)boolean值,用來(lái)表示是否包含字母
     for(int i=0 ; i
       if(Character.isDigit(str.charAt(i))){   //用char包裝類中的判斷數(shù)字的方法判斷每一個(gè)字符
         isDigit = true; 
       }
       if(Character.isLetter(str.charAt(i))){  //用char包裝類中的判斷字母的方法判斷每一個(gè)字符
         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();
   }

相關(guān)文章

最新評(píng)論