获取与正则表达式匹配的每个字符串的数组
Posted
技术标签:
【中文标题】获取与正则表达式匹配的每个字符串的数组【英文标题】:Getting an array of every string that matches a Regular expression 【发布时间】:2011-06-22 13:10:12 【问题描述】:我将如何解析这样的文件:
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();
但是我怎样才能得到每一个结果呢?
【问题讨论】:
【参考方案1】:Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
List<String> matches = new ArrayList<String>();
while(m.find())
matches.add(m.group());
【讨论】:
以上是关于获取与正则表达式匹配的每个字符串的数组的主要内容,如果未能解决你的问题,请参考以下文章
如何检查字符串是不是与 node.js 中的任何正则表达式数组匹配?
在javascript匹配中获取正则表达式的单独部分[重复]