1. 程式人生 > >常用正則表示式

常用正則表示式

   概要:
       Java正則表示式的語法與示例
匹配驗證-驗證Email是否正確
在字串中查詢字元或者字串
常用正則表示式
正則表示式語法
匹配驗證-驗證Email是否正確
public static void main(String[] args) {
    // 要驗證的字串
    String str = "[email protected]";
    // 郵箱驗證規則
    String regEx = "[a-zA-Z_]{1,}[0-9]{0,}@(([a-zA-z0-9]-*){1,}\\.){1,3}[a-zA-z\\-]{1,}";
    // 編譯正則表示式
    Pattern pattern = Pattern.compile(regEx);
    // 忽略大小寫的寫法
    // Pattern pat = Pattern.compile(regEx, Pattern.CASE_INSENSITIVE);
    Matcher matcher = pattern.matcher(str);
    // 字串是否與正則表示式相匹配
    boolean rs = matcher.matches();
    System.out.println(rs);
}
在字串中查詢字元或者字串
public static void main(String[] args) {
    // 要驗證的字串
    String str = "baike.xsoftlab.net";
    // 正則表示式規則
    String regEx = "baike.*";
    // 編譯正則表示式
    Pattern pattern = Pattern.compile(regEx);
    // 忽略大小寫的寫法
    // Pattern pat = Pattern.compile(regEx, Pattern.CASE_INSENSITIVE);
    Matcher matcher = pattern.matcher(str);
    // 查詢字串中是否有匹配正則表示式的字元/字串
    boolean rs = matcher.find();
    System.out.println(rs);
}
常用正則表示式
一個或多個漢字:^[\u0391-\uFFE5]+$
郵政編碼:^[1-9]\d{5}$
QQ號碼:^[1-9]\d{4,10}$
郵箱:^[a-zA-Z]{1,}[0-9]{0,}@(([a-zA-z0-9]-*){1,}.){1,3}[a-zA-z-]{1,}$
使用者名稱(字母開頭 + 數字/字母/下劃線):^[A-Za-z][A-Za-z1-9-]+$
手機號碼:^1[3|4|5|8][0-9]\d{8}$
URL:^((http|https)://)?([\w-]+.)+[\w-]+(/[\w-./?%&=]*)?$
18位身份證號:^(\d{6})(18|19|20)?(\d{2})([01]\d)([0123]\d)(\d{3})(\d|X|x)?$


作者:慕冬雪
連結:http://www.imooc.com/article/2850
來源:慕課網