I'm using Oracle 10g trying to EXCLUDE entries that contain a -
or a _
with a caret in the character class in Oracle 10g. I can find the entries containing dash or underscore through:
WITH example
AS (SELECT 'AAAA-1' n FROM DUAL
UNION
SELECT 'AAAAA_1' FROM DUAL
UNION
SELECT 'AAAA' FROM DUAL)
SELECT *
FROM example
WHERE REGEXP_LIKE (n, '[_\-]')
I know I can get by with using NOT but how do I negate this with a caret (^)
? I've tried [^_\-]
which returns everything, [^[_\-]]
which returns nothing, and [^(_\-)]
which is invalid.
Try:
^[^_-]*$
I believe that [^_-]
matches anything, because it is looking for Any character that is anything other than '_' or '-'. Similar to the opposite that works, [_-]
, which finds any character, anywhere in the string, that is either a '-' or '_'.
To change that, accept any number of character matching you character class [^_-]
, and surround with ^
(start of line) and $
(end of line).