How do I replace multiple strings in an array of Items - JavaScript ...
Put the ones that are longer first: the issue you have is that you have " remove this" then" remove this also".Regex pattern matches, left to right. And because " remove this" comes first, that matches, and the replace occurs. If you have [say] two potential matches and they are very similar, the difference being that one has some extra characters, put the longer one first.