ANDROID
한글만써야 할때. 안드로이드 한글
은호아빠
2014. 10. 11. 13:35
한글만~
public boolean isHangl(String email) {
if (email==null) return false;
boolean b =email.matches(".*[ㄱ-ㅎㅏ-ㅣ가-힣]+.*");
return b;
}