본문 바로가기

개발팁/정규표현식4

자주 쓰는 정규표현식 모음 비밀번호 매칭 정규표현식 https://stackoverflow.com/questions/19605150/regex-for-password-must-contain-at-least-eight-characters-at-least-one-number-a Regex for password must contain at least eight characters, at least one number and both lower and uppercase letters and special I want a regular expression to check that: A password contains at least eight characters, including at least one number and include.. 2021. 12. 8.
정규표현식 관련 사이트 알고 있어야 할 8가지 정규식 표현 from nettuts+ https://blog.outsider.ne.kr/360 알고 있어야 할 8가지 정규식 표현 from nettuts+ :: Outsider's Dev Story nettuts+에 Vasili이 쓴 유용한 정규식 표현에 대한 글을 올려서 내용 정리합니다. 정규식만 잘 써도 Validation이나 String을 다루기가 무척 편할텐데 쓸때마다 헷갈리고 약간은 어렵게 느껴지고 쉽게 blog.outsider.ne.kr 자바스크립트 - 정규식 표현 http://webgabal.blogspot.com/2014/04/blog-post_14.html 자바스크립트 - 정규식 표현 http://www.florakid.com/florakid_lib/sub/java.. 2021. 12. 8.
한글 체크 정규표현식 var idCheck = function(userId){ var lang_ck = /[ㄱ-ㅎ|ㅏ-ㅣ|가-힣]/; if(lang_ck.test(userId)){ console.log('한글 포함'); return false; } return true; } 참조 사이트 : https://www.nextree.co.kr/p4327/ 정규표현식(Regular Expression)을 소개합니다. 날이 갈수록 개인정보 보호에 관련하여 보안정책을 점진적으로 강화하고 있습니다. 이에 따라 Web에서 회원가입 시 Password 설정을 복잡해진 보안정책에 맞추다 보니 복잡하게 조합해야만 정상적 www.nextree.co.kr 2021. 12. 8.
정규표현식 테스트 사이트 https://regexr.com/ RegExr: Learn, Build, & Test RegEx RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp). regexr.com 2021. 12. 8.