2009-08-12 70 views

回答

14

創建一個匹配器並使用find()將它放置在下一個匹配項上。

15

下面是一個代碼示例:

int countMatches(Pattern pattern, String str) { 
    int matches = 0; 
    Matcher matcher = pattern.matcher(str); 
    while (matcher.find()) 
    matches++; 
    return matches; 
}