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