在Java正则表达式中使用简单组

使用Java正则表达式中的组,可以将多个字符视为一个单元。方法java.time.Matcher.group()用于在输入序列字符串中查找与所需模式匹配的子序列。

给出了一个演示Java正则表达式中的组的程序,如下所示-

示例

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Demo {
   public static void main(String args[]) {
      Pattern p = Pattern.compile("\\w\\d");
      Matcher m = p.matcher("I am f9");
      System.out.println("The input string is: I am f9");
      System.out.println("The Regex is: \\w\\d");
      System.out.println();
      if (m.find()) {
         System.out.println("Match: " + m.group());
      }
   }
}

上面程序的输出如下-

The input string is: I am f9
The Regex is: \w\d
Match: f9

现在让我们了解上面的程序。

在字符串序列“ I am f9”中搜索子序列“ \\ w \\ d”。该find()方法用于查找子序列是否在输入序列中,并使用该group()方法打印所需的结果。演示这的代码片段如下-

Pattern p = Pattern.compile("\\w\\d");
Matcher m = p.matcher("I am f9");
System.out.println("The input string is: I am f9");
System.out.println("The Regex is: \\w\\d");
System.out.println();
if (m.find()) {
   System.out.println("Match: " + m.group());
}