Answers for "javascript replace space with minus"

2

javascript replace space with minus

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

Code answers related to "javascript replace space with minus"

Code answers related to "Javascript"

Browse Popular Code Answers by Language