I\'m having some difficulty with a specific Regex I\'m trying to use. I\'m searching for every occurrence of a string (for my purposes, I\'ll say it\'s \"mystring\") i
Another regex to search that worked for me
(?![^<]*>)_mystring_
Source: https://stackoverflow.com/a/857819/1106878