Answers for "string replace space with plus sign js"

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 "Javascript"

Browse Popular Code Answers by Language