正则表达式的基本使用测试

前端之家收集整理的这篇文章主要介绍了正则表达式的基本使用测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package re; import java.text.ParseException; //正则表达式的测试 import java.util.regex.*; public class SimpleRegex { public static void main(String[] args) { // TODO Auto-generated method stub try{ //创建正则表达式 Pattern pt = Pattern.compile("(a(b)?c) + .*"); //在一个字符串中匹配正则表达式 Matcher mc = pt.matcher("acabcfasd"); //判断有没有找到匹配的字符串 boolean isMatched = mc.matches(); System.out.println(isMatched); int count = mc.groupCount(); //输出匹配的每个组的字符串 for(int i = 1; i <= count; ++i){ System.out.println(mc.group(i)); } }catch(PatternSyntaxException e){ System.out.println("正则表达式语法错误!\n"); }catch(IllegalStateException e){ System.out.println("找不到匹配的字符串!\n"); } } }

猜你在找的正则表达式相关文章