Lets say I have this:
< hello!
So I just want to match <
.
so I just do <
But what if it does this:
<< hello!
I don't want it to match <
, because <<
is a different regex expression I have (<<
).
How do I make it only match <
if it is it?