Answers for "remove space replace javascript"

PHP
5

js replace space

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

Code answers related to "remove space replace javascript"

Browse Popular Code Answers by Language