JavaScript:
.replace(/_/g,\" \");
I have it in my code but can\'t remember why or what it does! Can one of you regular expression gurus hel
The regex matches the _ character.
_
The g means Global, and causes the replace call to replace all matches, not just the first one.
g
replace