Answers for "nodejs remove unsafe string"

1

nodejs remove unsafe string

const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, ""));
Posted by: Guest on April-13-2021

Code answers related to "nodejs remove unsafe string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language