I am modifying this find/replace JS to be able to replace two words at the same time.
My code works except only with the last word I use as show here
|
|
|
Calling string.replace returns the new string with the replaced text, without modifying the original string itself. So your code:
is setting the updated text into the variable "replaced", but never updating the variable "haystackText". Additionally, since you do this:
It will only set the haystackText the first time the method is called, but not the second. It doesn't look like you have a need for leaving haystackText as a global variable (outside of the method), so changing this:
to this:
would fix your problem. |
|||||
|
|