728x90
Situation
- Want to create regex to replace all space and special characters except number and alphabets
Solution
function replaceSpecialCharacters(text) {
// Create a regular expression that matches all space and special characters.
const pattern = new RegExp(/[\W_]/g);
// Replace all matches with an empty string.
return text.replace(pattern, "");
}
// Example
const text = "This is a test string. 1234567890";
const replacedText = replaceSpecialCharacters(text);
console.log(replacedText); // Thisisateststring1234567890
[\W_]g
\W
: mean non-word character class/g
: mean globally all matching
728x90
'Research > Javascript' 카테고리의 다른 글
Javascript-웹사이트에 지도 추가하기(Tutorial) (0) | 2023.05.02 |
---|---|
Javascript_비동기 프로그래밍 (0) | 2023.04.13 |
Javascript_for, for in, for of는 무엇이 다른가(번역) (0) | 2023.02.06 |
forEach()는 Return으로 말릴 수 없는 짱구 (0) | 2022.11.28 |
'_hash(input)'의 언더바? Private property (0) | 2022.11.25 |
댓글