android中常用正则表达式

要严格的验证手机号码,必须先要清楚现在已经开放了哪些数字开头的号码段,目前国内号码段分配如下:

移动:134、135、136、137、138、139、150、151、157(TD)、158、159、187、188

联通:130、131、132、152、155、156、185、186

电信:133、153、180、189、(1349卫通)

验证手机号:

  1. public class ClassPathResource {   
  2.     public static boolean isMobileNO(String mobiles) {   
  3.         Pattern p = Pattern   
  4.                 .compile("^((13[0-9])|(15[^4,//D])|(18[0,5-9]))//d{8}$");   
  5.         Matcher m = p.matcher(mobiles);   
  6.         System.out.println(m.matches() + "---");   
  7.         return m.matches();   
  8.     }   
  9.     
  10.     public static void main(String[] args) throws IOException {   
  11.         System.out.println(ClassPathResource.isMobileNO("18977778989"));   
  12.     }   
  13. }  


 

验证邮箱

  1. public static boolean isEmail(String strEmail) {    
  2.     String strPattern = "^[a-zA-Z][\\w\\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\\w\\.-]*[a-zA-Z0-9]\\.[a-zA-Z][a-zA-Z\\.]*[a-zA-Z]$";   
  3.     Pattern p = Pattern.compile(strPattern);   
  4.     Matcher m = p.matcher(strEmail);   
  5.     return m.matches();   
  6. }  


 

检查EditText中输入的是否符合规则

  1. import Android.app.Activity;   
  2. import android.os.Bundle;   
  3. import android.view.View;   
  4. import android.widget.Button;   
  5. import android.widget.EditText;   
  6.     
  7. public class Main extends Activity {   
  8.     private EditText editText;   
  9.     private Button button;   
  10.     
  11.     @Override  
  12.     public void onCreate(Bundle savedInstanceState) {   
  13.         super.onCreate(savedInstanceState);   
  14.         setContentView(R.layout.main);   
  15.         editText = (EditText) findViewById(R.id.textId);   
  16.         editText.setText("EditText element");   
  17.         button = (Button) findViewById(R.id.btnId);   
  18.         button.setText("Check");   
  19.         button.setOnClickListener(new View.OnClickListener() {   
  20.             @Override  
  21.             public void onClick(View v) {   
  22.                 if (checkString(editText.getText().toString())) {   
  23.                     editText.setText("Corect");   
  24.                 }   
  25.             }   
  26.         });   
  27.     }   
  28.     
  29.     private boolean checkString(String s) {   
  30.         return s.matches("\\w*[.](Java|cpp|class)");   
  31.     }   
  32. }  

常用正则表达式收集

正则表达式用于字符串处理、表单验证等场合,实用高效。现将一些常用的表达式收集于此,以备不时之需。

匹配中文字符的正则表达式: [\u4e00-\u9fa5]
评注:匹配中文还真是个头疼的事,有了这个表达式就好办了

匹配双字节字符(包括汉字在内):[^\x00-\xff]
评注:可以用来计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)

匹配空白行的正则表达式:\n\s*\r
评注:可以用来删除空白行

匹配HTML标记的正则表达式:<(\S*?)[^>]*>.*?|<.*? />
评注:网上流传的版本太糟糕,上面这个也仅仅能匹配部分,对于复杂的嵌套标记依旧无能为力

匹配首尾空白字符的正则表达式:^\s*|\s*
评注:可以用来删除行首行尾的空白字符(包括空格、制表符、换页符等等),非常有用的表达式

匹配Email地址的正则表达式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
评注:表单验证时很实用

匹配网址URL的正则表达式:[a-zA-z]+://[^\s]*
评注:网上流传的版本功能很有限,上面这个基本可以满足需求

匹配帐号是否合法(字母开头,允许5-16字节,允许字母数字下划线):^[a-zA-Z][a-zA-Z0-9_]{4,15}
评注:表单验证时很实用

匹配国内电话号码:\d{3}-\d{8}|\d{4}-\d{7}
评注:匹配形式如 0511-4405222 或 021-87888822

匹配腾讯QQ号:[1-9][0-9]{4,}
评注:腾讯QQ号从10000开始

匹配中国邮政编码:[1-9]\d{5}(?!\d)
评注:中国邮政编码为6位数字

匹配身份证:\d{15}|\d{18}
评注:中国的身份证为15位或18位

匹配ip地址:\d+\.\d+\.\d+\.\d+
评注:提取ip地址时有用

匹配特定数字:
^[0-9]*[1-9][0-9]*$    //匹配正整数
^-[1-9]\d*   //匹配负整数
^-?[1-9]\d*   //匹配整数
^[1-9]\d*|0  //匹配非负整数(正整数 + 0)
^-[1-9]\d*|0   //匹配非正整数(负整数 + 0)
^[1-9]\d*\.\d*|0\.\d*[1-9]\d*   //匹配正浮点数
^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)  //匹配负浮点数
^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)  //匹配浮点数
^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0   //匹配非负浮点数(正浮点数 + 0)
^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0  //匹配非正浮点数(负浮点数 + 0)
评注:处理大量数据时有用,具体应用时注意修正

匹配特定字符串:
^[A-Za-z]+  //匹配由26个英文字母组成的字符串
^[A-Z]+  //匹配由26个英文字母的大写组成的字符串
^[a-z]+  //匹配由26个英文字母的小写组成的字符串
^[A-Za-z0-9]+  //匹配由数字和26个英文字母组成的字符串
^\w+  //匹配由数字、26个英文字母或者下划线组成的字符串
评注:最基本也是最常用的一些表达式
发布了29 篇原创文章 · 获赞 18 · 访问量 15万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章