반응형
[Html & CSS] javascript를 활용하여 텍스트에 특수문자 제거하는 정규식 쓰는 방법 !!
입력값을 받거나 특정 텍스트에 특수문자 제거하는 javascript 정규식 입니다 !!
예제코드
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input id="inputText" type="text" value="이 문자열에서! 특수문자@ 모두를 #제거하려 합니다.">
<button onclick="removeSpecialCharacters()">제거</button>
<p id="outputText"></p>
</body>
</html>
<script>
function removeSpecialCharacters() {
var str = document.getElementById("inputText").value;
var output = str.replace(/[\{\}\[\]\/?.,;:|\)*~`!^\-_+<>@\#$%&\\\=\(\'\"]/gi, '');
document.getElementById("outputText").innerHTML = output;
}
</script>
결과값
728x90
반응형
'Coding > HTML & CSS' 카테고리의 다른 글
[Html & CSS] javascript를 활용하여 input 태그에 엔터키 이벤트 확인하는 방법 !! (0) | 2023.07.07 |
---|---|
[CSS] 에러 메세지 Font property font-family does not have generic default 해결 방법 !! (0) | 2023.07.01 |
[Html & CSS] javascript를 활용하여 input 태그에 value 값 넣는 방법 !! (0) | 2023.06.23 |
[HTML & CSS] 버튼 클릭하여 회원가입 폼 팝업창 띄우는 방법 !! (0) | 2023.05.18 |
[HTML & CSS] 태그로 활용하여 줄 바꿈, 띄어쓰기, 공백 하는 방법 !! (0) | 2023.05.06 |
댓글