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.