小编典典

Java等效于JavaScript的String.match()

java

什么是Java的JavaScript等价物 String.match()

我需要获取一个数组或所有匹配项的列表

例:

var str = 'The quick brown fox jumps over the lazy dog';
console.log(str.match(/e/gim));

["e", "e", "e"]

http://www.w3schools.com/jsref/jsref_match.asp


阅读 217

收藏
2020-11-19

共1个答案

小编典典

检查正则表达式教程

您的代码应类似于以下内容:

String input = "The quick brown fox jumps over the lazy dog";
Matcher matcher = Pattern.compile("e").matcher(input);

while ( matcher.find() ) {
    // Do something with the matched text
    System.out.println(matcher.group(0));
}
2020-11-19