BKJang / dev-tips

📚 This repository is a collection of development tips and troubleshooting I have experienced during development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

사용하기 좋은 JS 정규 표현식

BKJang opened this issue · comments

🔨 What have I tried? How did you finally solve it?

규칙 구현 설명
모든 공백 찾기 /\s/g 띄어쓰기, 탭, 줄바꿈 감지
휴대전화번호 01[016789]\D?\d{3,4}\D?\d{4} 010-1234-5678, 01012345678, 010.1234.5678
이메일 체크 /^0-9a-zA-Z@0-9a-zA-Z.[a-zA-Z]{2,3}$ jp302119@naver.com

🙏 Reference