9
如何找到與Java中的正則表達式匹配的所有子字符串? (與.net中的Regex.Matches類似)如何在Java中獲得多個正則表達式匹配?
如何找到與Java中的正則表達式匹配的所有子字符串? (與.net中的Regex.Matches類似)如何在Java中獲得多個正則表達式匹配?
創建一個匹配器並使用find()
將它放置在下一個匹配項上。
下面是一個代碼示例:
int countMatches(Pattern pattern, String str) {
int matches = 0;
Matcher matcher = pattern.matcher(str);
while (matcher.find())
matches++;
return matches;
}