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 am trying to replace 3 chars with 3 other chars to build/mask an email address for a form.

This works only once or on the first instance of finding it:

email = "email1#domain!com|email2#domain!com|email3#domain!com";
email.replace("#","@").replace("!",".").replace("|",",");

The above code resulted in: email1@domain.com,email2#domain!com|email3#domain!com

After some reading I read about using RegEx which is the portion of coding I can never wrap my head around:

email.replace("/#/g","@").replace("/!/g",".").replace("/|/g",",");

That didn't work either and left it the same as the original var.

What am I doing wrong?

share|improve this question

3 Answers

up vote 4 down vote accepted

Do not put quotes around the regex. Regexes are literals that use / as a boundary.

Additionally, you will need to escape the | because it has a special meaning.

Finally, .replace is not transformative. It returns the result.

email = email.replace(/#/g,'@').replace(/!/g,'.').replace(/\|/g,',');
share|improve this answer
Thanks - will accept this answer when I can in a few minutes! – uber_n00b Sep 25 '12 at 22:30

Using regex literals, you omit the quotes (and you'll need to escape the pipe):

email.replace(/#/g,"@").replace(/!/g,".").replace(/\|/g,",");
share|improve this answer
email = "email1#domain!com|email2#domain!com|email3#domain!com";
email=email.replace(/#/g,"@").replace(/!/g,".").replace(/\|/g,",");
share|improve this answer

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.