Js Replace All Spaces

[Solved] Js Replace All Spaces | Php - Code Explorer | yomemimo.com
Question : javascript replace all space

Answered by : vastemonde

// replaces spaces with '_'
str = str.replace(/ /g, "_");
// or
str = str.split(' ').join('_');

Source : | Last Update : Tue, 18 May 21

Question : js replace all spaces

Answered by : crowded-caribou-12sdpjni5mzj

var replaced = str.replace(/ /g, '_');

Source : | Last Update : Wed, 28 Oct 20

Question : javascript replace all spaces

Answered by : khaled-hayek

var string = "Javascript is fun";
var newString = string.replace(" ", "_");
console.log(newString); // Javascript_is_fun

Source : | Last Update : Sat, 26 Jun 21

Question : javascript replace all spaces

Answered by : wicked-wolf-kfrr7ktv1iyg

var str = 'a b c';
var replaced = str.split(' ').join('_');

Source : | Last Update : Tue, 15 Dec 20

Question : javascript replace all space

Answered by : jareer

String = String.replace(/ /g, "_");
String = String.split(' ').join('_');

Source : | Last Update : Fri, 24 Dec 21

Answers related to js replace all spaces

Code Explorer Popular Question For Php