I need a regular expression to exclude values of a particular pattern.
REGEXP_LIKE( name,'[0-9].rm') # this returns values like 123rm, 456rm etc.
I need to exclude values with the above format.
I tried both of the following, but it's not returning anything.
REGEXP_LIKE( name,'^[[0-9].rm]')
REGEXP_LIKE( name,'^([0-9].rm)')
Please help! Thanks in advance
NOT REGEXP_LIKE(...)work? Good luck.