I have a problem. I'd like to match all occurrences of \t in my text (and by \t i mean it literally it is not a tab character) but I would like to exclude a match if it is a part of \t string. How to do that?
Example
<HTML>Blah</HTML>\t
D:\\UserData\\tui
I'd like to match \t in the first line but not in second line (as it is a part of \\t).
Is this at all possible using regular expressions?