手机号:
- publicstaticbooleancheckmobilePhone(StringmobilePhone){
- return(mobilePhone==null||mobilePhone.equals("")||
- !mobilePhone.matches("^((13)|(14)|(15)|(17)|(18))\\d{9}$"));
- }
车牌号:
- booleancheckShopSign(StringshopSign){
- return(shopSign==null||shopSign.equals("")||
- !shopSign.matches("^[\u4e00-\u9fa5]{1}[A-Z]{1}[A-Z_0-9]{5}$"));
- }
比如:"我A12345" 这样的车牌号也能匹配通过。 有想过解决办法,但是觉得34个省的简称都单独匹配很麻烦,目前还没有什么好的办法
转自 :http://blog.csdn.net/moneyshi/article/details/41960845
原文链接:https://www.f2er.com/regex/359509.html