Query:
select 1 "val" from dual where regexp_like('ITEM HEIGHT','^(?!ICON).*HEIGHT$');
The above query doesn't return me 1. Please let me know how to achieve negative lookahead using oracle regexp_like().
Note: Please don't suggest any changes in query, I am interested to know the right regular expression that's accepted by regexp_like() for negative lookahead. Also [^] seems to negate character by character only but not the entire string.