Getting an array of every string that matches a Regular expression
How would I parse a file like this:
Item costs $15 and is made up of --Metal--
I开发者_运维技巧tem costs $64 and is made up of --Plastic--
I can do
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
String result = m.group();
But how would I get EVERY result?
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
List<String> matches = new ArrayList<String>();
while(m.find()){
matches.add(m.group());
}
精彩评论