JAVASCRIPT 정규식 유효성 검사
1. Regular Expressions in JAVASCRIPT A. match() : The match() method searches a string for a match against a regular expression, and returns the matches, as an Array object. 정규식 : http://www.w3schools.com/jsref/jsref_obj_regexp.asp .match(/^\d+$/ig) // 숫자인지 판별하는 정규식입니다. .match(/^(\w+)@(\w+)[.](\w+)$/ig) // asdf@asdf.com 형식을 판별하는 정규식 .match(/^(\w+)@(\w+)[.](\w+)[.](\w+)$/ig) // asdf@asdf.co.kr 형식..
2013.07.30