How would I make a regular expression to match the character < not followed by (a or em or strong)
<
a
em
strong
So <hello and <string would match, but <strong wouldn't.
<hello
<string
<strong
Try this:
<(?!a|em|strong)
1.4m articles
1.4m replys
5 comments
57.0k users