Java使用正則表達式演示電話與郵箱格式

正則表達式是一種模式匹配語言。

人為的去制定一種規則,匹配上的話,返回true,匹配不上的話,就返回false。

先介紹一個String類中的方法: regex()反方

先簡單的來說一下這個方法使用的意思;

需要驗證的字符串調用regex()方法,括號內傳入的就是正則表達式。就看要驗證的字符串是否符合正則表達式的規范,是就返回true,否則false。

下面先展示一下:

接下來,我將挑主要的正則表達式來大概講解一下

. 任何字符(與行結束符可能匹配也可能不匹配)

\d 數字:[0-9]

\D 非數字: [^0-9]

\s 空白字符:[ \t\n\x0B\f\r]

\S 非空白字符:[^\s]

\w 單詞字符:[a-zA-Z_0-9]

\W 非單詞字符:[^\w]

X? 表示X,一次或一次也沒有

X* 表示X,零次或多次

X+ 表示X,一次或多次

X{n} 表示X,恰好 n 次

X{n,} 表示X,至少 n 次

X{n,m} 表示X,至少 n 次,但是不超過 m 次

對於這些的操作,代碼先演示一下:

public class Demo11 {
    public static void main(String[] args) {
        String st = "3";
        boolean res = st.matches("\\d?");//傳入矯正的格式
        System.out.println("字符串\"3\"經過\\d?處理執行的結果是:\t"+res);
        System.out.println("字符串\"3\"經過\\d處理執行的結果是:\t\t"+"3".matches("\\d"));
        System.out.println("字符串\"123\"經過\\d處理執行的結果是:\t"+"123".matches("\\d"));
        System.out.println("字符串\"123\"經過\\d*處理執行的結果是: \t"+"123".matches("\\d*"));
        System.out.println("字符串\" \"經過\\d+處理執行的結果是: \t"+" ".matches("\\d+"));
        System.out.println("字符串\"123\"經過\\d{3}處理執行的結果是:\t"+"123".matches("\\d{3}"));
        System.out.println("字符串\"12\"經過\\d{2,}處理執行的結果是:\t"+"12".matches("\\d{2,}"));
        System.out.println("字符串\"12\"經過\\d{2,5}處理執行的結果是:"+"12".matches("\\d{2,5}"));
        System.out.println("字符串\"1\"經過[1]處理執行的結果是: \t"+"1".matches("[1]"));
        System.out.println("字符串\"2\"經過[1]處理執行的結果是: \t"+"2".matches("[1]"));
    }
}

讀者你先可以自己分析一下這個代碼運行的結果是什麼,然後看下面的運行結果

電話格式

下來,我們嘗試隻有正則表達式來寫一個校驗電話的表達式:

public class Demo11 {
    public static void main(String[] args) {
        String string = "10123456789";
        boolean res = string.matches("1[0-9]{10}");
        System.out.println(res);
    }
}

這個隻是一個相對比較簡單的,我們日常生活當中,還會見到比較復雜大區號,比如前面帶有區號的(+86 / 0086)

大傢想想這個代碼是怎麼寫的。(因為這個代碼裡還有一些其他的正則表達式,不是很瞭解的話,可以先看一下博客底部)( • ̀ω•́ )✧

代碼演示:

public class Demo11 {
    public static void main(String[] args) {
        String string = "+86 10123456789";
        boolean res = string.matches("(\\+86|0086)?\\s*1[0-9]{10}");
        System.out.println(res);
    }
}

郵箱格式

我們再嘗試寫一下郵箱格式。

[email protected]這個郵箱為例:

public class Demo11 {
    public static void main(String[] args) {
        String st = "[email protected]";
        boolean res = st.matches("\\w+@\\w{2,5}\\.com");
        System.out.println(res);
    }
}

常用的正則表達式構造。

(來自jdk1.6api,jdk1.8api格式沒轉好,這裡不受影響,可以直接查看)

java1.6的api

鏈接:https://pan.baidu.com/s/1js1NcRXcN4HKnNpwZNsi9A 
提取碼:1234 

java 1.8的api

鏈接:https://pan.baidu.com/s/1PmrzMdxDG280W7VR3QOyyQ 
提取碼:1234 

到此這篇關於Java使用正則表達式演示電話與郵箱格式的文章就介紹到這瞭,更多相關Java正則表達式內容請搜索LevelAH以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持LevelAH!

推薦閱讀: