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