業余草 Java正則表達式,驗證手機號和電話號碼
Java 正則表達式
正則表達式定義了字符串的模式。
正則表達式可以用來搜索、編輯或處理文本。
正則表達式並不僅限於某一種語言,但是在每種語言中有細微的差別。
正則表達式實例
一個字符串其實就是一個簡單的正則表達式,例如 Hello World 正則表達式匹配 "Hello World" 字符串。
.(點號)也是一個正則表達式,它匹配任何一個字符如:"a" 或 "1"。
下表列出了一些正則表達式的實例及描述:
正則表達式 | 描述 |
---|---|
this is text |
匹配字符串 "this is text" |
this\s+is\s+text |
註意字符串中的 \s+。 匹配單詞 "this" 後面的 \s+ 可以匹配多個空格,之後匹配 is 字符串,再之後 \s+ 匹配多個空格然後再跟上 text 字符串。 可以匹配這個實例:this is text |
^\d+(\.\d+)? |
^ 定義了以什麽開始 \d+ 匹配一個或多個數字 ? 設置括號內的選項是可選的 \. 匹配 "." 可以匹配的實例:"5", "1.5" 和 "2.21"。 |
Java 正則表達式和 Perl 的是最為相似的。
java.util.regex 包主要包括以下三個類:
- Pattern 類:
pattern 對象是一個正則表達式的編譯表示。Pattern 類沒有公共構造方法。要創建一個 Pattern 對象,你必須首先調用其公共靜態編譯方法,它返回一個 Pattern 對象。該方法接受一個正則表達式作為它的第一個參數。
- Matcher 類:
Matcher 對象是對輸入字符串進行解釋和匹配操作的引擎。與Pattern 類一樣,Matcher 也沒有公共構造方法。你需要調用 Pattern 對象的 matcher 方法來獲得一個 Matcher 對象。
- PatternSyntaxException:
PatternSyntaxException 是一個非強制異常類,它表示一個正則表達式模式中的語法錯誤。
/** * 獲取當前的httpSession * @author :shijing * 2016年12月5日下午3:46:02 * @return */ public static HttpSession getSession() { return getRequest().getSession(); } /** * 手機號驗證 * @author :shijing * 2016年12月5日下午4:34:46 * @param str * @return 驗證通過返回true */ public static boolean isMobile(final String str) { Pattern p = null; Matcher m = null; boolean b = false; p = Pattern.compile("^[1][3,4,5,7,8][0-9]{9}$"); // 驗證手機號 m = p.matcher(str); b = m.matches(); return b; } /** * 電話號碼驗證 * @author :shijing * 2016年12月5日下午4:34:21 * @param str * @return 驗證通過返回true */ public static boolean isPhone(final String str) { Pattern p1 = null, p2 = null; Matcher m = null; boolean b = false; p1 = Pattern.compile("^[0][1-9]{2,3}-[0-9]{5,10}$"); // 驗證帶區號的 p2 = Pattern.compile("^[1-9]{1}[0-9]{5,8}$"); // 驗證沒有區號的 if (str.length() > 9) { m = p1.matcher(str); b = m.matches(); } else { m = p2.matcher(str); b = m.matches(); } return b; } public static void main(String[] args) { String phone = "13900442200"; String phone2 = "021-88889999"; String phone3 = "88889999"; String phone4 = "1111111111"; //測試1 if(isPhone(phone) || isMobile(phone)){ System.out.println("1這是符合的"); } //測試2 if(isPhone(phone2) || isMobile(phone2)){ System.out.println("2這是符合的"); } //測試3 if(isPhone(phone3) || isMobile(phone3)){ System.out.println("3這是符合的"); } //測試4 if(isPhone(phone4) || isMobile(phone4)){ System.out.println("4這是符合的"); }else{ System.out.println("不符合"); } }
如有疑問,歡迎關註微信公眾號“業余草”!
業余草 Java正則表達式,驗證手機號和電話號碼