replace space with underscore javascript code example

Example 1: js replace space with underscore

var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name

Example 2: javascript replace space by underscore

// replaces space with '_'
str = str.replace(/ /g, "_");
// or
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);
   }
}