Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Windows
- profile
- Quartz
- resource
- plugin
- JavaScript
- 네트워크
- context
- 줄바꿈 문자
- GIT
- netsh
- import
- web.xml
- lsof
- port
- Mac
- Eclipse
- grep
- tomcat
- VirtualBox
- xargs
- maVen
- Windows 10
- find
- Source
- vscode
- bash
- ssh
- 단축키
- IntelliJ
Archives
- Today
- Total
develog
java 정규표현식 본문
List<String> list = new ArrayList<String>();
Pattern pattern = Pattern.compile("([ㄱ-힣]{1,5})(\\s*)([0-9]{1,2}\\.*){3}");
Matcher matcher = pattern.matcher(str);
while (matcher.find()) {
list.add(matcher.group());
}
System.out.println(list);
'Dev > Java' 카테고리의 다른 글
Jacob 설치 (Windows 7 64 bit) (0) | 2014.05.20 |
---|---|
Java 한글 Encoding (0) | 2014.03.04 |
[java] Ant copy (0) | 2014.02.18 |
variable arguments 2 (0) | 2014.02.14 |
java for break label (0) | 2014.02.12 |
Comments