replace space with underscore in csharp

Code Example - replace space with underscore in csharp

                
                        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);
   }
}
                    
                
 

js replace space with underscore

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