2011. 11. 5. 19:51
Java Pattern Group 사용하기 JAVA이야기2011. 11. 5. 19:51
public class Test {
public static void main(String[] args) {
String url = "http://www.naver.comasdsadads.adasd";
Pattern TITLE = Pattern.compile("http://(\\w+).(\\w+).(\\w+)*");
Matcher m = TITLE.matcher(url);
while(m.find()){
System.out.println(m.group(2));
}
}
}
'JAVA이야기' 카테고리의 다른 글
블로킹큐 (0) | 2011.11.08 |
---|---|
동기화 Collection클래스 (0) | 2011.11.07 |
java thread 내생각 (0) | 2011.11.03 |
넌블로킹 알고리즘 (0) | 2011.09.27 |
단일 연산 변수 클래스 (0) | 2011.09.27 |