- public class TestRegex {
- public static void main(String[] args) {
- /************ 字符类 ***********/
- pl(demo("asd", "asd"));
- pl(demo("abc", "..."));
- }
- public static boolean demo(String str, String reg) {
- // 静态方法:compile方法是编译正则表达式然后放在Pattern模式中,这样做就会不用到现场去编译了,然后用这个模式去匹配效率会高些
- Pattern p = Pattern.compile(reg);
- // 匹配正则表达式
- Matcher m = p.matcher(str);
- boolean b = str.matches(reg);
- return b;
- }
- static void pl(Object obj) {
- System.out.println(obj);
- }
- }
复制代码 |