首页 > 代码库 > 正则表达式汇总

正则表达式汇总

/**         * 不包含非法字符         */        public static final String DO_NOT_HAVE_ILLEGAL = "[^&\\\\<>‘\"]+";        /**         * 不包含非法字符         */        public static final String DO_NOT_HAVE_ILLEGAL_SPECVAL = "^[^\\&<>\\\\]*$";

 

正则表达式汇总