2011-08-04 125 views

回答

8
+0

好的和有趣的方式來說正確的答案 –

+0

現貨,男人。發現。 –

+0

你等了多久才能部署該答案? :) :) +1 –

2

那會做到這一點的代碼如下所示:

Pattern pattern = 
Pattern.compile("the regex string"); 

Matcher matcher = 
pattern.matcher("the file"); 

boolean found = false; 
while (matcher.find()) { 
    System.out.println(match.group()); 
    found = true; 
} 

環路根據需要,我現在是停止時,它發現的方式第一個地址。

正則表達式本身可以找到here

0

如果你不得不忍受使用Java,那麼你的生活方式和快樂可以使用Java Regex Tester來改善。