Java正则
原创:转载需注明原创地址 https://www.cnblogs.com/fanerwei222/p/11848407.html Java正则的编写和使用: 使用方法: /** * 正则表达式字符串 */ String patternString = "zoux*"; /** * 需要匹配验证的字符串 */ String needPatString = "z00000000"; /** * 规则匹配对象 */ Pattern pattern = Pattern.compile(patternString); /** * 使用规则匹配对象去验证字符串是否匹配正则 */ pattern.matcher(needPatString).matches(); /** * 直接用字符串中的matches()方法进行匹配效果一样 */ needPatString.matches(patternString); 1. \ 的用法: 特殊字符或者转义用的:例如 \n 表示换行 (特殊符号) \\ 表示匹配 \ 这个符号 (转义) \\\\ 表示匹配 \\ 这个符号 (转义) \\( 表示匹配 ( 这个符号 (转义) System.out.println("(".matches("\\(")); // true System.out.println("(xx".matches("\\(")); //