gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 11:45:18 24 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/42411916/

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