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.
|
JavaScript replace() Method Hello username!Don’t forget me this weekend!Username. When i use this
but it's replace only first occurance i have to perform replace all. |
|||
|
|
|
Use a regex with the global flag set:
|
|||
|
|
|
Usa a global regular expression. The
You could also surround it with word boundaries if needed to avoid substring matches.
|
|||
|
|