美文网首页宝藏屋
常用正则表达式工具类

常用正则表达式工具类

作者: 小石读史 | 来源:发表于2020-03-27 13:34 被阅读0次

常用正则表达式工具类备份

public class RegexUtils {
    /**
     * 正则表达式:验证用户名
     */
    public static final String REGEX_USERNAME = "^[a-zA-Z]\\w{5,20}$";

    /**
     * 正则表达式:验证是否全字母
     */
    public static final String REGEX_ENGLISH_LETTERS = "^[a-zA-Z]+";

    /**
     * 正则表达式:验证密码
     */
    public static final String REGEX_PASSWORD = "^[a-zA-Z0-9]{6,20}$";

    /**
     * 正则表达式:管理员密码  必须8-20 必须同时包含数字和字母
     */
    public static final String REGEX_ADM_PASSWORD = "^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,20}$";

    /**
     * 正则表达式:验证手机号
     */
    public static final String REGEX_MOBILE = "^1[0-9]{10}$";

    /**
     * 正则表达式:验证邮箱
     */
    public static final String REGEX_EMAIL = "^[a-zA-Z0-9_.-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$";

    /**
     * 正则表达式:验证汉字
     */
    public static final String REGEX_CHINESE = "^[\u4e00-\u9fa5],{0,}$";

    /**
     * 正则表达式:验证身份证
     */
    public static final String REGEX_ID_CARD = "(^\\d{18}$)|(^\\d{15}$)";

    /**
     * 正则表达式:验证URL
     */
    public static final String REGEX_URL = "http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?";

    /**
     * 正则表达式:验证IP地址
     */
    public static final String REGEX_IP_ADDR = "(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)";

    /**
     * 正则表达式:验证正整数
     */
    public static final String REGEX_POSITIVE_INTEGER = "^[1-9]\\d*$";
    
    /**
     * 正则表达式:验证非负整数
     */
    public static final String REGEX_NOT_NEGTIVE_INTEGER = "^[1-9]\\d*|0$";

    /**
     * 正则表达式:验证年龄(3-13)
     */
    public static final String REGEX_AGE = "^[3-9]|(1[0-3])$";

    /**
     * 正则表达式:验证1开头的11位手机号
     */
    public static final String REGEX_PHONE = "^1[0-9]{10}$";

    /**
     * 正则表达式:验证两位小数金额
     */
    public static final String REGEX_MONEY = "^(([1-9]{1}\\d*)|([0]{1}))(\\.(\\d){0,2})?$";

    /**
     * 正则表达式:验证课程进度(U1L0-U8L12或者P1U1L0)
     */
    public static final String REGEX_COURSE_PROGRESS = "^(P[1-9])?U[1-9]L([0-9]|1[0-2])$";

    /**
     * 校验用户名
     *
     * @param username
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isUsername(String username) {
        return Pattern.matches(REGEX_USERNAME, username);
    }

    /**
     * 校验密码
     *
     * @param password
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isPassword(String password) {
        return Pattern.matches(REGEX_PASSWORD, password);
    }

    /**
     * 校验管理员密码
     *
     * @param password
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isAdmPassword(String password) {
        return Pattern.matches(REGEX_ADM_PASSWORD, password);
    }

    /**
     * 校验手机号
     *
     * @param mobile
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isMobile(String mobile) {
        return Pattern.matches(REGEX_MOBILE, mobile);
    }

    /**
     * 校验邮箱
     *
     * @param email
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isEmail(String email) {
        return Pattern.matches(REGEX_EMAIL, email);
    }

    /**
     * 校验汉字
     *
     * @param chinese
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isChinese(String chinese) {
        return Pattern.matches(REGEX_CHINESE, chinese);
    }

    /**
     * 校验身份证
     *
     * @param idCard
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isIDCard(String idCard) {
        return Pattern.matches(REGEX_ID_CARD, idCard);
    }

    /**
     * 校验URL
     *
     * @param url
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isUrl(String url) {
        return Pattern.matches(REGEX_URL, url);
    }

    /**
     * 校验IP地址
     *
     * @param ipAddr
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isIPAddr(String ipAddr) {
        return Pattern.matches(REGEX_IP_ADDR, ipAddr);
    }

    /**
     * 校验正整数
     *
     * @param positiveInteger
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isPositiveInteger(String positiveInteger) {
        return Pattern.matches(REGEX_POSITIVE_INTEGER, positiveInteger);
    }
    
    /**
     * 校验非负整数
     *
     * @param notNegtiveInteger
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isNotNegtiveInteger(String notNegtiveInteger) {
        return Pattern.matches(REGEX_NOT_NEGTIVE_INTEGER, notNegtiveInteger);
    }

    /**
     * 校验学员的年龄
     *
     * @param age
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isAge(String age) {
        return Pattern.matches(REGEX_AGE, age);
    }

    /**
     * 校验1开头的11位手机号
     *
     * @param phone
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isPhone(String phone) {
        return Pattern.matches(REGEX_PHONE, phone);
    }

    /**
     * 校验两位小数金额
     *
     * @param money
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isMoney(String money) {
        return Pattern.matches(REGEX_MONEY, money);
    }

    /**
     * 验证课程进度(U1L0-U9L12)
     *
     * @param courseProgress
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isCourseProgress(String courseProgress) {
        return Pattern.matches(REGEX_COURSE_PROGRESS, courseProgress);
    }

    /**
     * 是否全部英文字母
     *
     * @param string
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isAllEnglishLetters(String string) {
        return Pattern.matches(REGEX_ENGLISH_LETTERS, string);
    }

    /**
     * 是否全部中文
     *
     * @param string
     * @return 校验通过返回true,否则返回false
     */
    public static boolean isAllChinese(String string) {
        int n = 0;
        for (int i = 0; i < string.length(); i++) {
            n = (int) string.charAt(i);
            if (!(19968 <= n && n < 40869)) {
                return false;
            }
        }
        return true;
    }


}

相关文章

网友评论

    本文标题:常用正则表达式工具类

    本文链接:https://www.haomeiwen.com/subject/espnehtx.html