Regular expression for *not* a *sequence* of characters
Solved
General and Desktop
-
@JonB said in Regular expression for *not* a *sequence* of characters:
it now seems to me that it does have such a construct
It does not have a generic way. It has a "line does not contain" or "document does not contain". Say you want to capture stuff inside**
(so\*\*(.+?)\*\*
) but exclude the capture if.+?
matchesfoo
. I don't think that is possible.Forget what I said.