Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use this code to replace spaces with _, it works for the first space in the string but all the other instances of spaces remain unchanged. Anybody know why?

function updateKey()
{
    var key=$("#title").val();
    key=key.replace(" ","_");
    $("#url_key").val(key);
}
share|improve this question

4 Answers

up vote 119 down vote accepted

Try .replace(/ /g,"_");

Edit: or .split(' ').join('_') if you have an aversion to REs

Edit: John Resig said:

If you're searching and replacing through a string with a static search and a static replace it's faster to perform the action with .split("match").join("replace") - which seems counter-intuitive but it manages to work that way in most modern browsers. (There are changes going in place to grossly improve the performance of .replace(/match/g, "replace") in the next version of Firefox - so the previous statement won't be the case for long.)

share|improve this answer
1  
bah! u beat me by 58secs! i shouldn't have added the key=key.!!! lol – Adam Jan 13 '09 at 22:12
Had it in my clipboard anyway. What are the odds. – Crescent Fresh Jan 13 '09 at 22:15
1  
Is there any way to do this without the regexp? – Click Upvote Jan 13 '09 at 22:20
4  
.split(' ').join('_') – Crescent Fresh Jan 13 '09 at 22:31
regex: now you have TWO problems! ha ha. Actually, this is one area where plain old split/join might be a better choice, especially if the codebase will be shared amongst less-than-expert peers who may need to poke through things without you to guide them. – matt lohkamp Jan 14 '09 at 1:13
show 4 more comments

try this:

key=key.replace(/ /g,"_");

that'll do a global find/replace

javascript replace

share|improve this answer

To answer Prasanna's question below:

How do you replace multiple spaces by single space in Javascript ?

You would use the same function (replace) with a different regular expression. The expression for whitespace is "\s" and the expression for "1 or more times" is the plus sign, so you'd just replace Adam's answer with the following:

key=key.replace(/\s+/g," ");
share|improve this answer

I created JS performance test for it http://jsperf.com/split-and-join-vs-replace2

share|improve this answer
it seems nowadays replace is the better overall choice – Kave Sep 25 '12 at 10:01
Kave - what? Although not all browsers are equal, split/join on average is much better. In fact, in a lot of modern browsers, it's a tone better! Thanks Inez for setting this up! – David Hobs Oct 21 '12 at 0:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.