Regular expressions - how to match the character '<' not followed by ('a' or 'em' or 'strong')?
- by Spines
How would I make a regular expression to match the character '<' not followed by ('a' or 'em' or 'strong')
so <hello and <string would match, but <strong wouldn't.
UPDATE: Btw, the language I'm using is javascript