vote up 1 vote down star

Hi,

I require a means of checking to see if a string has the following exact pattern within it, i.e.:

(P)

Examples where this would be true is:

'Test System (P)'

Unsure though how to check for cases when the string that doesn't have '(P)', i.e:

'Test System (GUI for Prof)' - in this case, this would be false but I am using REGEXP_LIKE and it actually returns TRUE.

I only want it to return True when the exact string of '(P)' exists within the search string.

Any help achieving this using PL/SQL would be great.

Thanks.

flag

2 Answers

vote up 4 vote down check

Use:

REGEX_LIKE(t.column, '\(P\)')

Regular-Expressions.info is a great resource.

Regular INSTR would work (Oracle 8i+):

WHERE INSTR(t.column, '(P)') > 0 --column contains '(P)'

WHERE INSTR(t.column, '(P)') = 0 --column does NOT contain '(P)'

LIKE works too:

WHERE t.column LIKE '%(P)%' --column contains '(P)'

WHERE t.column NOT LIKE '%(P)%' --column does NOT contain '(P)'
link|flag
thanks for that guys – tonsils Sep 14 at 5:02
Watch out for Nulls – David Aldridge Sep 14 at 18:08
vote up 2 vote down

Try like:

WHERE thing like '%(P)%';
link|flag
Agree. If you are not checking for a regular expression, why use REGEXP functions – Gary Sep 14 at 5:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.