Regex not equal to string
- by Kieron
Hi,
I'm banging my head against a wall with a regular expression. I'm trying to define an expression that excludes exactly this text 'System' (case insensitive), but can contain
the word 'System' providing it's not just that.
Examples:
System == INVALID
SYSTEM == INVALID
system == INVALID
syStEm == INVALID
asd SysTem == Valid
asd System asd ==…