Hi,
I have an app that uses unix regular expressions to match subjects it will store in its memory cache. I have setup several apps as follows:
RANGE: KEY_RANGE_1.[A-T].*
RANGE: KEY_RANGE_2.[U-Z].*
RANGE: KEY_ROUND.[A-Z].*
RANGE: KEY_TOTAL.[0-9].*
I need to setup an app that will get all the expressions that do not match those above. I am trying to do something like:
RANGE: <Some form of regular expression which says get all symbols that are not in KEY_RANGE, KEY_ROUND and KEY_TOTAL>
but I do not know how to do this.
The only thing I can see where it says "does not match" is [^] function but this seems to only take ranges into account as opposed to literal strings.
Can anyone please help.
Thanks,
Toddyl
I have an app that uses unix regular expressions to match subjects it will store in its memory cache. I have setup several apps as follows:
RANGE: KEY_RANGE_1.[A-T].*
RANGE: KEY_RANGE_2.[U-Z].*
RANGE: KEY_ROUND.[A-Z].*
RANGE: KEY_TOTAL.[0-9].*
I need to setup an app that will get all the expressions that do not match those above. I am trying to do something like:
RANGE: <Some form of regular expression which says get all symbols that are not in KEY_RANGE, KEY_ROUND and KEY_TOTAL>
but I do not know how to do this.
The only thing I can see where it says "does not match" is [^] function but this seems to only take ranges into account as opposed to literal strings.
Can anyone please help.
Thanks,
Toddyl