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.

JavaScript replace() Method

Hello username!Don’t forget me this weekend!Username.

When i use this

str.replace("username", "Username");

but it's replace only first occurance i have to perform replace all.

share|improve this question

2 Answers

up vote 2 down vote accepted

Use a regex with the global flag set:

str.replace(/username/g, 'Username')
share|improve this answer

Usa a global regular expression. The g modifier makes it search the entire string.

str.replace(/username/g, "Username");

You could also surround it with word boundaries if needed to avoid substring matches.

str.replace(/\busername\b/g, "Username");
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.