Ciao Mat
What you interested in here is negatives? Right?
You will have to do the regex through a definition since negatives involve square brackets.
"<div ?[^c>]" should work for the example. If its the content of a one line field. IF its deep inside a text field we'd need to do a bit more.
But basically ...
literal "<div"
" ?" match 0 or 1 space
"[^c>]" match any character that is not "c" or ">"
This should match anything NOT with those patterns.
Tell me if you have problems.
TT