คุณสามารถปฏิบัติต่ออักขระหลายตัวเป็นหน่วยเดียวโดยจับเป็นกลุ่ม คุณเพียงแค่ต้องวางอักขระเหล่านี้ไว้ในชุดวงเล็บ
คุณสามารถนับจำนวนกลุ่มในการแข่งขันปัจจุบันโดยใช้ groupCount() วิธีการของคลาส Matcher วิธีนี้จะคำนวณจำนวนการจับกลุ่มในการแข่งขันปัจจุบันและส่งคืน
ตัวอย่าง
import java.util.regex.Matcher; import java.util.regex.Pattern; public class Test { public static void main(String[] args) { String str1 = "<p>This <b>is</b> an <b>example</b> HTML <b>script</b> where <b>ever</b> alternative <b>word</b> is <b>bold</b></p>."; //Regular expression to match contents of the bold tags String regex = "(t(\\S+)t)(\\s)"; String str = "the words tit tat tweet tostff tact that tilt text. start and end with the letter t "; //Creating a pattern object Pattern pattern = Pattern.compile(regex); //Matching the compiled pattern in the String Matcher matcher = pattern.matcher(str); while (matcher.find()) { System.out.println(matcher.group(0)); } System.out.println("Total capturing groups: "+matcher.groupCount()); } }
ผลลัพธ์
tit tat tweet tact that tilt text tart Total capturing groups: 3