簡體   English   中英

獲取與正則表達式匹配的每個字符串的數組

[英]Getting an array of every string that matches a Regular expression

我將如何解析這樣的文件:

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());
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM