1

我对 Java 还很陌生,我正在尝试学习更高级的主题,例如 Regex。

Java 等同于以下 C# 代码:

foreach (Match m in Regex.Matches(input, output)))
    {
...
    }

我有点卡住了。:/

4

1 回答 1

2
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(input);
while (matcher.find()) {
    String match = matcher.group();
    ...
}
于 2012-12-14T01:19:50.640 回答