Answers for "replace space with plus javascript"

4

js replace space

// replaces space with '_'
str = str.replace(/ /g, "_");
// or
str = str.split(' ').join('_');
Posted by: Guest on May-11-2021
-2

js replace all spaces

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

js replace space with plus

// replaces space with '+'
str = str.replace(/ /g, "+");
// or
str = str.split(' ').join('+');
Posted by: Guest on May-11-2021

Code answers related to "replace space with plus javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language