java正則表達式《-》

 此類提供平常開發中經常使用的正則驗證函數,好比:郵箱、手機號、電話號碼、身份證號碼、日期、數字、小數、URL、IP地址等。使用Pattern對象的matches方法進行整個字符匹配,調用該方法至關於: java

        Pattern p = Pattern.compile(regex);
        Matcher m = p.matcher(input);
        return m.matches();
git

每一個正則可能還有待優化的地方,您若有更好的方式實現某一個功能的驗證,歡迎提出來你們一塊兒討論。下面是工具類的完整代碼:web

[java] view plaincopy正則表達式

<EMBED id=ZeroClipboardMovie_1 height=18 name=ZeroClipboardMovie_1 type=application/x-shockwave-flash align=middle pluginspage=http://www.macromedia.com/go/getflashplayer width=18 src=http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf wmode="transparent" flashvars="id=1&width=18&height=18" allowfullscreen="false" allowscriptaccess="always" bgcolor="#ffffff" quality="best" menu="false" loop="false">app

  1. /** 函數

  2.  * 正則工具類 工具

  3.  * 提供驗證郵箱、手機號、電話號碼、身份證號碼、數字等方法 oop

  4.  */  post

  5. public final class RegexUtils {  單元測試

  6.   

  7.     /** 

  8.      * 驗證Email 

  9.      * @param email email地址,格式:zhangsan@sina.com,zhangsan@xxx.com.cn,xxx表明郵件服務商 

  10.      * @return 驗證成功返回true,驗證失敗返回false 

  11.      */  

  12.     public static boolean checkEmail(String email) {  

  13.         String regex = "\\w+@\\w+\\.[a-z]+(\\.[a-z]+)?";  

  14.         return Pattern.matches(regex, email);  

  15.     }  

  16.       

  17.     /** 

  18.      * 驗證身份證號碼 

  19.      * @param idCard 居民身份證號碼15位或18位,最後一位多是數字或字母 

  20.      * @return 驗證成功返回true,驗證失敗返回false 

  21.      */  

  22.     public static boolean checkIdCard(String idCard) {  

  23.         String regex = "[1-9]\\d{13,16}[a-zA-Z0-9]{1}";  

  24.         return Pattern.matches(regex,idCard);  

  25.     }  

  26.       

  27.     /** 

  28.      * 驗證手機號碼(支持國際格式,+86135xxxx...(中國內地),+00852137xxxx...(中國香港)) 

  29.      * @param mobile 移動、聯通、電信運營商的號碼段 

  30.      *<p>移動的號段:134(0-8)、13五、13六、13七、13八、13九、147(預計用於TD上網卡) 

  31.      *、150、15一、15二、157(TD專用)、15八、15九、187(未啓用)、188(TD專用)</p> 

  32.      *<p>聯通的號段:130、13一、13二、15五、156(世界風專用)、185(未啓用)、186(3g)</p> 

  33.      *<p>電信的號段:13三、15三、180(未啓用)、189</p> 

  34.      * @return 驗證成功返回true,驗證失敗返回false 

  35.      */  

  36.     public static boolean checkMobile(String mobile) {  

  37.         String regex = "(\\+\\d+)?1[3458]\\d{9}$";  

  38.         return Pattern.matches(regex,mobile);  

  39.     }  

  40.       

  41.     /** 

  42.      * 驗證固定電話號碼 

  43.      * @param phone 電話號碼,格式:國家(地區)電話代碼 + 區號(城市代碼) + 電話號碼,如:+8602085588447 

  44.      * <p><b>國家(地區) 代碼 :</b>標識電話號碼的國家(地區)的標準國家(地區)代碼。它包含從 0 到 9 的一位或多位數字, 

  45.      *  數字以後是空格分隔的國家(地區)代碼。</p> 

  46.      * <p><b>區號(城市代碼):</b>這可能包含一個或多個從 0 到 9 的數字,地區或城市代碼放在圓括號—— 

  47.      * 對不使用地區或城市代碼的國家(地區),則省略該組件。</p> 

  48.      * <p><b>電話號碼:</b>這包含從 0 到 9 的一個或多個數字 </p> 

  49.      * @return 驗證成功返回true,驗證失敗返回false 

  50.      */  

  51.     public static boolean checkPhone(String phone) {  

  52.         String regex = "(\\+\\d+)?(\\d{3,4}\\-?)?\\d{7,8}$";  

  53.         return Pattern.matches(regex, phone);  

  54.     }  

  55.       

  56.     /** 

  57.      * 驗證整數(正整數和負整數) 

  58.      * @param digit 一位或多位0-9之間的整數 

  59.      * @return 驗證成功返回true,驗證失敗返回false 

  60.      */  

  61.     public static boolean checkDigit(String digit) {  

  62.         String regex = "\\-?[1-9]\\d+";  

  63.         return Pattern.matches(regex,digit);  

  64.     }  

  65.       

  66.     /** 

  67.      * 驗證整數和浮點數(正負整數和正負浮點數) 

  68.      * @param decimals 一位或多位0-9之間的浮點數,如:1.23,233.30 

  69.      * @return 驗證成功返回true,驗證失敗返回false 

  70.      */  

  71.     public static boolean checkDecimals(String decimals) {  

  72.         String regex = "\\-?[1-9]\\d+(\\.\\d+)?";  

  73.         return Pattern.matches(regex,decimals);  

  74.     }   

  75.       

  76.     /** 

  77.      * 驗證空白字符 

  78.      * @param blankSpace 空白字符,包括:空格、\t、\n、\r、\f、\x0B 

  79.      * @return 驗證成功返回true,驗證失敗返回false 

  80.      */  

  81.     public static boolean checkBlankSpace(String blankSpace) {  

  82.         String regex = "\\s+";  

  83.         return Pattern.matches(regex,blankSpace);  

  84.     }  

  85.       

  86.     /** 

  87.      * 驗證中文 

  88.      * @param chinese 中文字符 

  89.      * @return 驗證成功返回true,驗證失敗返回false 

  90.      */  

  91.     public static boolean checkChinese(String chinese) {  

  92.         String regex = "^[\u4E00-\u9FA5]+$";  

  93.         return Pattern.matches(regex,chinese);  

  94.     }  

  95.       

  96.     /** 

  97.      * 驗證日期(年月日) 

  98.      * @param birthday 日期,格式:1992-09-03,或1992.09.03 

  99.      * @return 驗證成功返回true,驗證失敗返回false 

  100.      */  

  101.     public static boolean checkBirthday(String birthday) {  

  102.         String regex = "[1-9]{4}([-./])\\d{1,2}\\1\\d{1,2}";  

  103.         return Pattern.matches(regex,birthday);  

  104.     }  

  105.       

  106.     /** 

  107.      * 驗證URL地址 

  108.      * @param url 格式:http://blog.csdn.net:80/xyang81/article/details/7705960? 或 http://www.csdn.net:80 

  109.      * @return 驗證成功返回true,驗證失敗返回false 

  110.      */  

  111.     public static boolean checkURL(String url) {  

  112.         String regex = "(https?://(w{3}\\.)?)?\\w+\\.\\w+(\\.[a-zA-Z]+)*(:\\d{1,5})?(/\\w*)*(\\??(.+=.*)?(&.+=.*)?)?";  

  113.         return Pattern.matches(regex, url);  

  114.     }  

  115.       

  116.     /** 

  117.      * 匹配中國郵政編碼 

  118.      * @param postcode 郵政編碼 

  119.      * @return 驗證成功返回true,驗證失敗返回false 

  120.      */  

  121.     public static boolean checkPostcode(String postcode) {  

  122.         String regex = "[1-9]\\d{5}";  

  123.         return Pattern.matches(regex, postcode);  

  124.     }  

  125.       

  126.     /** 

  127.      * 匹配IP地址(簡單匹配,格式,如:192.168.1.1,127.0.0.1,沒有匹配IP段的大小) 

  128.      * @param ipAddress IPv4標準地址 

  129.      * @return 驗證成功返回true,驗證失敗返回false 

  130.      */  

  131.     public static boolean checkIpAddress(String ipAddress) {  

  132.         String regex = "[1-9](\\d{1,2})?\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))";  

  133.         return Pattern.matches(regex, ipAddress);  

  134.     }  

  135.       

  136. }  

單元測試類完整代碼:

[java] view plaincopy

<EMBED id=ZeroClipboardMovie_2 height=18 name=ZeroClipboardMovie_2 type=application/x-shockwave-flash align=middle pluginspage=http://www.macromedia.com/go/getflashplayer width=18 src=http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf wmode="transparent" flashvars="id=2&width=18&height=18" allowfullscreen="false" allowscriptaccess="always" bgcolor="#ffffff" quality="best" menu="false" loop="false">

  1. /** 

  2.  * 正則表達式工具類測試 

  3.  */  

  4. public class RegexUtilsTest {  

  5.       

  6.     /** 

  7.      * 驗證郵箱 

  8.      */  

  9.     @Test   

  10.     public void testCheckEmail() {  

  11.         boolean result = RegexUtils.checkEmail("zha2_ngsan@sina.com.cn");  

  12.         Assert.assertTrue(result);  

  13.     }  

  14.       

  15.     /** 

  16.      * 驗證身份證號碼 

  17.      */  

  18.     @Test   

  19.     public void testCheckIdCard() {  

  20.         boolean result = RegexUtils.checkIdCard("432403193902273273");  

  21.         Assert.assertTrue(result);  

  22.     }  

  23.       

  24.     /** 

  25.      * 驗證手機號碼 

  26.      */  

  27.     @Test   

  28.     public void testCheckMobile() {  

  29.         boolean result = RegexUtils.checkMobile("+8613620285733");  

  30.         Assert.assertTrue(result);  

  31.     }  

  32.       

  33.     /** 

  34.      * 驗證電話號碼 

  35.      */  

  36.     @Test   

  37.     public void testCheckPhone() {  

  38.         boolean result = RegexUtils.checkPhone("+860738-4630706");  

  39.         Assert.assertTrue(result);  

  40.     }  

  41.       

  42.     /** 

  43.      * 驗證整數(正整數和負整數) 

  44.      */  

  45.     @Test   

  46.     public void testCheckDigit() {  

  47.         boolean result = RegexUtils.checkDigit("123132");  

  48.         Assert.assertTrue(result);  

  49.     }  

  50.       

  51.     /** 

  52.      * 驗證小數和整數(正負整數和正負小數) 

  53.      */  

  54.     @Test   

  55.     public void testCheckDecimals() {  

  56.         boolean result = RegexUtils.checkDecimals("-33.2");  

  57.         Assert.assertTrue(result);  

  58.     }  

  59.       

  60.     /** 

  61.      * 驗證空白字符 

  62.      */  

  63.     @Test   

  64.     public void testCheckBlankSpace() {  

  65.         boolean result = RegexUtils.checkBlankSpace("           ");  

  66.         Assert.assertTrue(result);  

  67.     }  

  68.       

  69.     /** 

  70.      * 匹配中文 

  71.      */  

  72.     @Test   

  73.     public void testCheckChinese() {  

  74.         boolean result = RegexUtils.checkChinese("中文");  

  75.         Assert.assertTrue(result);  

  76.     }  

  77.       

  78.     /** 

  79.      * 驗證日期 

  80.      */  

  81.     @Test   

  82.     public void testCheckBirthday() {  

  83.         boolean result = RegexUtils.checkBirthday("1992/09/03");  

  84.         Assert.assertTrue(result);  

  85.     }  

  86.       

  87.     /** 

  88.      * 驗證中國郵政編碼 

  89.      */  

  90.     @Test   

  91.     public void testCheckPostcode() {  

  92.         boolean result = RegexUtils.checkPostcode("417100");  

  93.         Assert.assertTrue(result);  

  94.     }  

  95.       

  96.     /** 

  97.      * 驗證URL地址 

  98.      */  

  99.     @Test   

  100.     public  void testCheckURL() {  

  101.         boolean result = RegexUtils.checkURL("http://blog.csdn.com:80/xyang81/article/details?name=&abc=中文");  

  102.         Assert.assertTrue(result);  

  103.     }  

  104.       

  105.     /** 

  106.      * 驗證IP地址 

  107.      */  

  108.     @Test   

  109.     public void testCheckIpAddress() {  

  110.         boolean result = RegexUtils.checkIpAddress("192.1.22.255");  

  111.         Assert.assertTrue(result);  

  112.     }  

  113. }  

//同時判斷是否爲電話號碼或者爲手機號碼

if(Pattern.matches("^((13[0-9])|(15[0-9])|(18[0-9]))\\d{8}$", receiver.getPhone())==false && Pattern.matches("(^((0\\d{2,3})[-]?)(\\d{7,8})?$)",receiver.getPhone())==false){   data.put("message", Message.error("手機/電話格式不正確"));   return data;  }

相關文章
相關標籤/搜索