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
- HTML
- node
- ssh
- node.js
- 인공지능
- Retrofit
- angularJs
- IT 도서
- AWS
- EC2
- express
- Linux
- 자바
- Q-Map
- SSH Key
- 안드로이드
- Repository
- java
- mean
- 저장소
- Ionic
- commit
- cordova
- JSP
- gmaps
- ubuntu
- git
- 깃
- Android
- rest
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