在Java 中使用正則表達式檢索匹配
在Java 中使用正則表達式從給定表達式獲取匹配數組涉及創建字符串獲取匹配數組匹配器和迭代匹配。
使用Matcher
使用Pattern 類別的編譯方法建立一個Matcher 物件:
Matcher m = Pattern.compile("regex_expression").matcher(input_string);
迭代匹配>使用find Matcher的迭代方法匹配:
List<String> allMatches = new ArrayList<>(); while (m.find()) { allMatches.add(m.group()); }
如果您需要匹配數組,請使用toArray 方法:
String[] matchesArray = allMatches.toArray(new String[0]);
在 Java 9 及更高版本中,您可以在 Matcher 上使用 toMatchResult 方法來建立 MatchResult 物件。這提供了創建惰性迭代器以有效循環匹配的方法:
例如,此程式碼使用 allMatches 輔助方法來迭代匹配,列印它們的群組和位置:for (MatchResult match : MatchResult.findAll(p, input)) { // Use match information without advancing iteration... }
以上是如何使用 Java 正規表示式從字串中檢索匹配項數組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!