RegexUtils

/**
 * 密码是否正确
 */
public static final String PASSWORD_REGEX = "^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,20}$";
/**
 * 匹配全网IP的正则表达式
 */
public static final String IP_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))))$";

/**
 * 匹配手机号码的正则表达式
 * <br>支持130——139、150——153、155——159、170、171、172、176、177、178/180-189号段
 */
public static final String PHONE_NUMBER_REGEX = "^1{1}(3{1}\\d{1}|5{1}[012356789]{1}|8{1}[0123456789]{1}|7{1}[0123678]{1})\\d{8}$";

/**
 * 匹配邮箱的正则表达式
 * <br>"www."可省略不写
 */
public static final String EMAIL_REGEX = "^(www\\.)?\\w+@\\w+(\\.\\w+)+$";

/**
 * 匹配汉子的正则表达式,个数限制为一个或多个
 */
public static final String CHINESE_REGEX = "^[\u4e00-\u9f5a]+$";

/**
 * 匹配正整数的正则表达式,个数限制为一个或多个
 */
public static final String POSITIVE_INTEGER_REGEX = "^\\d+$";

/**
 * 匹配身份证号的正则表达式
 */
public static final String ID_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 final String ZIP_CODE = "^\\d{6}$";

/**
 * 匹配URL的正则表达式
 */
public static final String URL = "^(([hH][tT]{2}[pP][sS]?)|([fF][tT][pP]))\:\\/\\/[wW]{3}\\.[\\w-]+\\.\\w{2,4}(\\/.*)?$";

/**
 * 匹配给定的字符串是否是一个邮箱账号,"www."可省略不写
 * @param string 给定的字符串
 * @return true:是
 */
public static boolean isEmail(String string){
    return string.matches(EMAIL_REGEX);
}

/**
 * 匹配给定的字符串是否是一个手机号码,支持130——139、150——153、155——159、180、183、185、186、188、189号段
 * @param string 给定的字符串
 * @return true:是
 */
public static boolean isMobilePhoneNumber(String string){
    return string.matches(PHONE_NUMBER_REGEX);
}

/**
 * 匹配给定的字符串是否是一个全网IP
 * @param string 给定的字符串
 * @return true:是
 */
public static boolean isIp(String string){
    return string.matches(IP_REGEX);
}

/**
 * 匹配给定的字符串是否全部由汉子组成
 * @param string 给定的字符串
 * @return true:是
 */
public static boolean isChinese(String string){
    return string.matches(CHINESE_REGEX);
}

/**
 * 验证给定的字符串是否全部由正整数组成
 * @param string 给定的字符串
 * @return true:是
 */
public static boolean isPositiveInteger(String string){
    return string.matches(POSITIVE_INTEGER_REGEX);
}

/**
 * 验证给定的字符串是否是身份证号
 * <br>
 * <br>身份证15位编码规则:dddddd yymmdd xx p
 * <br>dddddd:6位地区编码
 * <br>yymmdd:出生年(两位年)月日,如:910215
 * <br>xx:顺序编码,系统产生,无法确定
 * <br>p:性别,奇数为男,偶数为女
 * <br>
 * <br>
 * <br>身份证18位编码规则:dddddd yyyymmdd xxx y
 * <br>dddddd:6位地区编码
 * <br>yyyymmdd:出生年(四位年)月日,如:19910215
 * <br>xxx:顺序编码,系统产生,无法确定,奇数为男,偶数为女
 * <br>y:校验码,该位数值可通过前17位计算获得
 * <br>前17位号码加权因子为 Wi = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 ]
 * <br>验证位 Y = [ 1, 0, 10, 9, 8, 7, 6, 5, 4, 3, 2 ]
 * <br>如果验证码恰好是10,为了保证身份证是十八位,那么第十八位将用X来代替 校验位计算公式:Y_P = mod( ∑(Ai×Wi),11 )
 * <br>i为身份证号码1...17 位; Y_P为校验码Y所在校验码数组位置
 * @param string
 * @return
 */
public static boolean isIdCard(String string){
    return string.matches(ID_CARD);
}

/**
 * 验证给定的字符串是否是邮编
 * @param string
 * @return
 */
public static boolean isZipCode(String string){
    return string.matches(ZIP_CODE);
}

/**
 * 验证给定的字符串是否是URL,仅支持http、https、ftp
 * @param string
 * @return
 */
public static boolean isURL(String string){
    return string.matches(URL);
}


public static boolean isPassword(String string){
    return string.matches(PASSWORD_REGEX);
}
### RegExUtils.replaceAll 方法使用示例及说明 `RegExUtils.replaceAll` 是一个用于执行正则表达式替换操作的静态方法,通常封装在工具类 `RegexUtils` 中。它简化了 Java 中使用 `Pattern` 和 `Matcher` 的复杂性,使得字符串替换操作更加简洁和高效。该方法接受原始字符串、正则表达式和替换内容作为参数,并返回替换后的字符串[^1]。 #### 示例代码 以下是一个使用 `RegExUtils.replaceAll` 的示例,用于移除字符串中的特定模式: ```java public class RegexExample { public static void main(String[] args) { String input = "<abc>>213<<"; String regex1 = "[\\s\\S]*>>"; String regex2 = "<<"; String result = RegExUtils.replaceAll(input, regex1, ""); result = RegExUtils.replaceAll(result, regex2, ""); System.out.println(result); } } ``` 在该示例中,首先移除了所有匹配 `"[\\s\\S]*>>"` 的部分,然后移除了 `"<<"`,最终输出清理后的字符串。这种方式避免了手动创建 `Pattern` 和 `Matcher` 对象的繁琐过程,提高了开发效率[^2]。 #### 方法说明 - **参数**: - `input`:原始字符串。 - `regex`:用于匹配的正则表达式。 - `replacement`:替换匹配部分的字符串。 - **返回值**:替换后的字符串。 #### 使用场景 `RegExUtils.replaceAll` 可广泛应用于字符串清洗、格式化、数据提取等场景。例如,可以用于清理 HTML 标签、提取日志信息、格式化用户输入等。通过封装成工具类,开发者可以快速复用代码,减少重复开发[^1]。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值