Answers for "replace spaces in a string with underscore js"

16

js replace space with underscore

var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name
Posted by: Guest on April-24-2020
1

replace spaces with underscores vbnet

MyString = MyString.Replace(" ", "_")
Posted by: Guest on December-30-2021

Code answers related to "replace spaces in a string with underscore js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language