코드에서 흔히 볼 수 있는 작은 부분

640 단어 코드
1, 메일 양식이 정확한지 확인
public final static String REG_email = "^[\\w\\d]+@[\\w\\d]+(\\.[\\w\\d]+)+$";

Pattern pattern = Pattern.compile(RegExpression.REG_email);

Matcher m = pattern.matcher(email);

if (!m.find()) {

  System.out.println("Wrong email format.");

}

좋은 웹페이지 즐겨찾기