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"";
}
}
正则表达式工具类
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- GitHub: https://github.com/LiCheng244/LCUtils个人博客: http:/...
- 直接访问 GitHub 看代码 YYGRegular It is a regular expression use...
- 14.01_常见对象(正则表达式的概述和简单使用) A:正则表达式是指一个用来描述或者匹配一系列符合某个语法规则的...
- 01正则表达式的概念和作用 02正则表达式语法规则 03正则表达式练习和相关的String类方法 04正则表达式匹...
- 本人83年出生,专业美术七年,艺术设计专业,摄影也懂,设计还行,所以一直以二手艺术家自享。 04年随广告公司来到北...