java 怎么利用正则表达式从给定的字符串中取出匹配规则字符串

2025-04-15 07:52:42
推荐回答(1个)
回答1:

String testString = "java怎么利用正则表达式从给定的字符串中取出匹配规则字符串";
Pattern pattern = Pattern.compile("\\w+");  
  
Matcher matcher = pattern.matcher(testString);
while(matcher.find())
{
    System.out.println(matcher.group());
}