Answers for "replace specific characters with space in javascript"

4

remove special characters from string javascript

var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
Posted by: Guest on June-06-2020
-2

js replace all spaces

var replaced = str.replace(/ /g, '_');
Posted by: Guest on October-21-2020

Code answers related to "replace specific characters with space in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language