Regular expressions - how to match the character '<' not followed by ('a' or 'em' or 'strong')?
Posted
by Spines
on Stack Overflow
See other posts from Stack Overflow
or by Spines
Published on 2010-04-25T00:56:04Z
Indexed on
2010/04/25
1:03 UTC
Read the original article
Hit count: 188
regex
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
© Stack Overflow or respective owner