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 | 31 |
Tags
- ubuntu
- 인공지능
- commit
- angularJs
- AWS
- HTML
- Q-Map
- node.js
- EC2
- cordova
- SSH Key
- Retrofit
- 자바
- 저장소
- express
- node
- 깃
- Repository
- JSP
- mean
- Ionic
- gmaps
- Android
- ssh
- IT 도서
- java
- rest
- 안드로이드
- Linux
- git
Archives
- Today
- Total
목록정규표현식 (1)
UroA 개발 블로그
[JAVA] 정규표현식이란?
1. 정규표현식이란 정규표현식이란 텍스트를 기술하기 위한 표현방식을 말합니다. 정규표현식은 특정한 문자열의 검색, 치환, 추출에 있어 강력한 문법을 제공하여 줍니다. wiki에는 다음과 같이 정의하고 있습니다.A regular expression is a string that describes or matches a set of strings, according to certain syntax rules. 2. 정규식 만들기 Java에서는 아래와 같이 정규식을 작성할 수 있습니다. Pattern p = Pattern.compile("패턴"); Matcher m = p.matcher("문자열"); boolean b = m.matches(); boolean b = Pattern.matches("패턴", "문..
Programming/JAVA
2016. 1. 4. 15:11