gpt4 book ai didi

java - 获取与正则表达式匹配的每个字符串的数组

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:40:58 25 4
gpt4 key购买 nike

我将如何解析这样的文件:

Item costs $15 and is made up of --Metal--
Item costs $64 and is made up of --Plastic--

我可以

Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
String result = m.group();

但是我怎样才能得到每一个结果呢?

最佳答案

Pattern p = Pattern.compile(regex); 
Matcher m = p.matcher(input);
List<String> matches = new ArrayList<String>();
while(m.find()){
matches.add(m.group());
}

关于java - 获取与正则表达式匹配的每个字符串的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4918393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com