आप एकाधिक वर्णों को समूहों के रूप में कैप्चर करके उन्हें एक इकाई के रूप में मान सकते हैं। आपको बस इन वर्णों को कोष्ठकों के एक समूह में रखना है।
आप groupCount() . का उपयोग करके वर्तमान मिलान में समूहों की संख्या की गणना कर सकते हैं मैचर वर्ग की विधि। यह विधि वर्तमान मिलान में कैप्चरिंग समूहों की संख्या की गणना करती है और उसे वापस करती है।
उदाहरण
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