1. 程式人生 > >java手機號碼正則表示式:

java手機號碼正則表示式:

/** 驗證手機號碼:

移動號碼段:139、138、137、136、135、134、150、151、152、157、158、159、182、183、187、188、147

聯通號碼段:130、131、132、136、185、186、145

電訊號碼段:133、153、180、189

* @param cellphone

* @return 

*/

public static boolean checkCellphone(String cellphone)
{String regex = "^((13[0-9])|(14[5|7])|(15([0-3]|[5-9]))|(18[0,5-9]))\\d{8}$"; return check(cellphone, regex);}

/** * 驗證固話號碼 *
* @param telephone *
@return */

public static boolean checkTelephone(String telephone)
{String regex = "^(0\\d{2}-\\d{8}(-\\d{1,4})?)|(0\\d{3}-\\d{7,8}(-\\d{1,4})?)$";return check(telephone, regex);}

總的:
^1[3458][0-9]{9}$