I have the following Regex expression:
(?<=>[^<]*)(abc)
The idea behind the expression (I think) is to find any instance of the letters abc, or whatever the user search for, that are not in any tag.
See the example: https://regex101.com/r/bsNFne/2 (only works in Chrome)
The problem is that positive lookahead is not supported in Internet Explorer or Edge.
I have attempted different conversions, but I cannot find a Regex that works in Internet Explorer and achieves the same result as the above regex in Chrome.
How can I convert the regex to function in all major browsers?