Background: I am using MATCH with the Match:Regular flag to use a regular expression to match a pattern.
How do I write a regular expression in Clarion to match everything EXCEPT a string? For example, I have a 3-digit string that I want the MATCH to return True if it's not 'ZZZ'.
I've tried [^ZZZ] and [^Z][^Z][^Z] but neither works because the [^] is for a single character, not a group of characters. Thanks in advance.
How do I write a regular expression in Clarion to match everything EXCEPT a string? For example, I have a 3-digit string that I want the MATCH to return True if it's not 'ZZZ'.
I've tried [^ZZZ] and [^Z][^Z][^Z] but neither works because the [^] is for a single character, not a group of characters. Thanks in advance.