Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 리액트
- KDT 프로그래머스 데브코스 프론트엔드
- 프로그래머스 프론트엔드 데브코스
- netlify redirect
- git 같은계정 다른 컴퓨터
- postcss
- 이벤트 수식어
- 프로그래머스 K_Digital Training
- SCSS extend
- SCSS import
- vue mixin
- 폼 입력 바인딩
- vuex map
- 프로그래머스 데브코스
- 다른컴퓨터에서 git사용
- KDT 프로그래머스
- nextjs사용법
- react next
- Vue
- 리스트 렌더링
- vue 이벤트 수신
- 쌓임맥락
- 고양이 사진 검색기
- SCSS use
- flex
- intersection opserver
- vue 지역 컴포넌트
- Spacer
- SCSS forward
- 프로그래머스 데브코스 프론트엔드
Archives
- Today
- Total
혼자 적어보는 노트
정규 표현식 공백 및 특수문자 체크 본문
tab, 스페이스, 엔터 체크 & 제거
const reg = /\s/g;
const str = "a b c"
if(str.match(reg)){
alert("공백이 존재합니다.");
}
str.replace(reg, ""); // 모든 공백 제거
특수문자 체크 & 제거
const reg = /[^\w\sㄱ-힣]|[\_]/g;
const str = "a b c"
if(str.match(reg)){
alert("특수문자가 존재합니다.");
}
str.replace(reg, ""); // 특수문자 제거
// 제외할 특수문자 직접 지정
const reg2 = /[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi;
const str2 = "!@#!@$123";
if(str2.match(reg2)){
alert("특수문자가 존재합니다.");
}
str2.replace(reg2, ''); // 특수문자 제거
'기타' 카테고리의 다른 글
JWT에 대해 이해하기 (+ cookie, session) (0) | 2022.09.17 |
---|---|
객체지향 프로그래밍(OOP) (0) | 2022.09.16 |
프로그래머스 데브코스 TIL - Day 52 (0) | 2022.05.31 |
[VSCode] 새 파일, 새 폴더 단축키 설정 (0) | 2022.05.31 |
Storybook 사용해 보기 (0) | 2022.05.27 |
Comments