Java正则表达式匹配电话格式

时间:2022-08-23 14:23:00

大家都知道,正则表达式是一种可以用于模式匹配和替换的规范,一个正则表达式就是由普通的字符(例如字符a到z)以及特殊字符(元字符)组成的文字模式,它用以描述在查找文字主体时待匹配的一个或多个字符串。正则表达式作为一个模板,将某个字符模式与所搜索的字符串进行匹配。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
   * 手机号:目前全国有27种手机号段。
   * 移动有16个号段:134、135、136、137、138、139、147、150、151、152、157、158、159、182、187、188。其中147、157、188是3G号段,其他都是2G号段。
   * 联通有7种号段:130、131、132、155、156、185、186。其中186是3G(WCDMA)号段,其余为2G号段。
   * 电信有4个号段:133、153、180、189。其中189是3G号段(CDMA2000),133号段主要用作无线网卡号。
   * 150、151、152、153、155、156、157、158、159 九个;
   * 130、131、132、133、134、135、136、137、138、139 十个;
   * 180、182、185、186、187、188、189 七个;
   * 13、15、18三个号段共30个号段,154、181、183、184暂时没有,加上147共27个。
   */
  private boolean telCheck(String tel){
    Pattern p = Pattern.compile("^((13\\d{9}$)|(15[0,1,2,3,5,6,7,8,9]\\d{8}$)|(18[0,2,5,6,7,8,9]\\d{8}$)|(147\\d{8})$)");
    Matcher m = p.matcher(tel);
    return m.matches();
  }

Java正则表达式验证格式(邮箱、电话号码)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.firewolf.utils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
 * 使用正则表达式验证输入格式
 * @author liuxing
 *
 */
public class RegexValidateUtil {
  public static void main(String[] args) {
    System.out.println(checkEmail("14_8@qw.df"));
    System.out.println(checkMobileNumber("071-3534452"));
  }
  /**
   * 验证邮箱
   * @param email
   * @return
   */
  public static boolean checkEmail(String email){
    boolean flag = false;
    try{
        String check = "^([a-z0-9A-Z]+[-|_|\\.]?)+[a-z0-9A-Z]@([a-z0-9A-Z]+(-[a-z0-9A-Z]+)?\\.)+[a-zA-Z]{2,}$";
        Pattern regex = Pattern.compile(check);
        Matcher matcher = regex.matcher(email);
        flag = matcher.matches();
      }catch(Exception e){
        flag = false;
      }
    return flag;
  }
  /**
   * 验证手机号码
   * @param mobiles
   * @return
   */
  public static boolean checkMobileNumber(String mobileNumber){
    boolean flag = false;
    try{
        Pattern regex = Pattern.compile("^(((13[0-9])|(15([0-3]|[5-9]))|(18[0,5-9]))\\d{8})|(0\\d{2}-\\d{8})|(0\\d{3}-\\d{7})$");
        Matcher matcher = regex.matcher(mobileNumber);
        flag = matcher.matches();
      }catch(Exception e){
        flag = false;
      }
    return flag;
  }
}