Answers for "regex replace all spaces with underscores"

15

js replace space with underscore

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

linux replace spaces with underscore from all files in directory

find . -type f -name "* *" -exec bash -c 'mv "$0" "${0// /_}"' {} \;
Posted by: Guest on October-18-2021

Code answers related to "regex replace all spaces with underscores"

Browse Popular Code Answers by Language