Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJavaにかなり慣れていないので、正規表現などのより高度なトピックを調べようとしています。
次のC#コードと同等のJavaは何でしょうか。
foreach (Match m in Regex.Matches(input, output))) { ... }
私はちょっと立ち往生しています。:/
Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(input); while (matcher.find()) { String match = matcher.group(); ... }