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
- varags
- decompiler
- 이클립스
- MS-SQL
- WebView
- scrollView
- asp.net
- jsp
- Eclipse
- MANTIS
- Bootstrap
- javascript
- TextBox
- C#
- html
- MSsql
- Redirect
- Java
- 자바
- Maven
- 웹뷰
- 안드로이드
- Web Service
- 웹 서비스
- Android
- SpringSource Tool Suite
- Apache Lucene
- 자바스크립트
- STS
- 컬럼명
Archives
- Today
- Total
bboks.net™
자바 이메일 정규식 본문
import java.util.regex.Pattern; String emailPattern = "^[_a-z0-9-]+(.[_a-z0-9-]+)*@(?:\\w+\\.)+\\w+$"; Pattern.matches(emailPattern, email);
[출처] email 체크 정규식*Java