I would like to modify my strings so i can replace the character ' ' with '_' using JS,for example "new zeland"=>"new_zeland" how can i do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
You could use Rob's code, but it uses a regular expression to find the space, while it would be faster to just search for a literal space:
|
|||||||||
|