正则表达式工具类

public class RegexUtils {

/**

* 匹配全网IP的正则表达式

*/

public static final StringIP_REGEX="^((?:(?:25[0-5]|2[0-4]\\d|((1\\d{2})|([1-9]?\\d)))\\.){3}(?:25[0-5]|2[0-4]\\d|((1\\d{2})|([1-9]?\\d))))$";

/**

* 匹配手机号码的正则表达式

*
支持130——139、150——153、155——159、180--189号段

*/

public static finalStringPHONE_NUMBER_REGEX="^1{1}(3{1}\\d{1}|5{1}[012356789]{1}|8{1}[0123456789]{1})\\d{8}$";

/**

* 匹配邮箱的正则表达式

*
"www."可省略不写

*/

public static finalStringEMAIL_REGEX="^(www\\.)?\\w+@\\w+(\\.\\w+)+$";

/**

* 匹配汉子的正则表达式,个数限制为一个或多个

*/

public static finalStringCHINESE_REGEX="^[\u4e00-\u9f5a]+$";

/**

* 匹配正整数的正则表达式,个数限制为一个或多个

*/

public static finalStringPOSITIVE_INTEGER_REGEX="^\\d+$";

/**

* 匹配身份证号的正则表达式

*/

public static finalStringID_CARD="^(^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])\\d{3}$)|(^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0|1|2]\\d)|3[0-1])((\\d{4})|\\d{3}[Xx])$)$";

/**

* 匹配邮编的正则表达式

*/

public static finalStringZIP_CODE="^\\d{6}$";

/**

* 匹配URL的正则表达式

*/

public static finalStringURL="^(([hH][tT]{2}[pP][sS]?)|([fF][tT][pP]))\\:\\/\\/[wW]{3}\\.[\\w-]+\\.\\w{2,4}(\\/.*)?$";

/**

* 匹配给定的字符串是否是一个邮箱账号,"www."可省略不写

*

*@paramstring给定的字符串

*@returntrue:是

*/

public static booleanisEmail(String string) {

returnstring.matches(EMAIL_REGEX);

}

/**

* 匹配给定的字符串是否是一个手机号码,支持130——139、150——153、155——159、180、183、185、186、188、189号段

*

*@paramstring给定的字符串

*@returntrue:是

*/

public static booleanisMobilePhoneNumber(String string) {

returnstring.matches(PHONE_NUMBER_REGEX);

}

/**

* 匹配给定的字符串是否是一个全网IP

*

*@paramstring给定的字符串

*@returntrue:是

*/

public static booleanisIp(String string) {

returnstring.matches(IP_REGEX);

}

/**

* 匹配给定的字符串是否全部由汉子组成

*

*@paramstring给定的字符串

*@returntrue:是

*/

public static booleanisChinese(String string) {

returnstring.matches(CHINESE_REGEX);

}

/**

* 验证给定的字符串是否全部由正整数组成

*

*@paramstring给定的字符串

*@returntrue:是

*/

public static booleanisPositiveInteger(String string) {

returnstring.matches(POSITIVE_INTEGER_REGEX);

}

/**

* 验证给定的字符串是否是身份证号

*

*
身份证15位编码规则:dddddd yymmdd xx p

*
dddddd:6位地区编码

*
yymmdd:出生年(两位年)月日,如:910215

*
xx:顺序编码,系统产生,无法确定

*
p:性别,奇数为男,偶数为女

*

*

*
身份证18位编码规则:dddddd yyyymmdd xxx y

*
dddddd:6位地区编码

*
yyyymmdd:出生年(四位年)月日,如:19910215

*
xxx:顺序编码,系统产生,无法确定,奇数为男,偶数为女

*
y:校验码,该位数值可通过前17位计算获得

*
前17位号码加权因子为 Wi = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 ]

*
验证位 Y = [ 1, 0, 10, 9, 8, 7, 6, 5, 4, 3, 2 ]

*
如果验证码恰好是10,为了保证身份证是十八位,那么第十八位将用X来代替 校验位计算公式:Y_P = mod( ∑(Ai×Wi),11 )

*
i为身份证号码1...17 位; Y_P为校验码Y所在校验码数组位置

*

*@paramstring

*@return

*/

public static booleanisIdCard(String string) {

returnstring.matches(ID_CARD);

}

/**

* 验证给定的字符串是否是邮编

*

*@paramstring

*@return

*/

public static booleanisZipCode(String string) {

returnstring.matches(ZIP_CODE);

}

/**

* 验证给定的字符串是否是URL,仅支持http、https、ftp

*

*@paramstring

*@return

*/

public static booleanisURL(String string) {

returnstring.matches(URL);

}

/**

* 验证密码只能输入字母和数字的特殊字符,这个返回的是过滤之后的字符串

*/

public staticStringcheckPasWord(String pro) {

try{

// 只允许字母、数字和汉字

String regEx ="[^a-zA-Z0-9\u4E00-\u9FA5]";

Pattern p = Pattern.compile(regEx);

Matcher m = p.matcher(pro);

returnm.replaceAll("").trim();

}catch(Exception e) {

}

return"";

}

/**

* 只能输入字母和汉字 这个返回的是过滤之后的字符串

*/

public staticStringcheckInputPro(String pro) {

try{

String regEx ="[^a-zA-Z\u4E00-\u9FA5]";

Pattern p = Pattern.compile(regEx);

Matcher m = p.matcher(pro);

returnm.replaceAll("").trim();

}catch(Exception e) {

}

return"";

}

}

你可能感兴趣的:(正则表达式工具类)