✅ Regex which matches strings containing things other than specific patterns
This is probably a very weird question (and also isn't strictly related to C#). I need a regex which matches strings which contain anything but a specific set of patterns. For instance, a string should match if it contains anything but substrings which match either
<\d{5}>
<\d{5}>
or
\s+
\s+
. I don't even know if this is possible, just wanna ask.