replace space with underscore javascript code example
Example 1: js replace space with underscore
var string = "my name";
string = string.replace(/ /g,"_");
Example 2: javascript replace space by underscore
str = str.replace(/ /g, "_");
str = str.split(' ').join('_');
Example 3: js replace all spaces
var replaced = str.replace(/ /g, '_');
Example 4: replace space with underscore in c#
using System;
class Demo {
static void Main() {
String str, str2;
str ="Hello World !";
Console.WriteLine("String: "+str);
str2 = str.Replace(" ", "-");
Console.WriteLine("String (After replacing): "+str2);
}
}