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
- MSsql
- STS
- Web Service
- Maven
- WebView
- MS-SQL
- asp.net
- 안드로이드
- Apache Lucene
- javascript
- C#
- 웹 서비스
- Bootstrap
- SpringSource Tool Suite
- jsp
- Java
- 자바
- html
- TextBox
- 자바스크립트
- varags
- decompiler
- Eclipse
- 웹뷰
- 컬럼명
- Android
- Redirect
- 이클립스
- MANTIS
- scrollView
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