< 숫자판별하는 정교식 >


// 숫자판별하는 정규식
// .match(/^\d+$/ig)

var regdate = document.getElementById('regdate');

if(regdate.value.match(/^\d\d\d\d\d\d+$/ig)   ==  null){
alert('숫자 형식(6자리)으로 입력하세요');              
return false;
}


<이메일 판별하는 정규식>

// 메일 판별하는 정규식
//.match(/^(\w+)@(\w+)[.](\w+)$/ig)             //asdf@asdf.com
//.match(/^(\w+)@(\w+)[.](\w+)[.](\w+)$/ig)     //asdf@asdf.co.kr

var writer= document.getElementById('writer');

if(writer.value.match(/^(\w+)@(\w+)[.](\w+)$/ig) == null){
alert('이메일 형식으로 입력하세요');
return false;
}

+ Recent posts