Answers for "how to replace . in string search regext"

8

regex replace /

// replaces all / in a String with _
str = str.replace(///g,'_');
Posted by: Guest on May-29-2020

Code answers related to "how to replace . in string search regext"

Code answers related to "Javascript"

Browse Popular Code Answers by Language