Digit « Regular Expressions « Oracle PL / SQL






1.Suppose we want to find any row where there are digits or lack of digits
2.REGEXP_INSTR(description,'[[:digit:]]')
3.Any match for a 'non-zero to nine' returns all rows because all rows have a non-digit
4.NOT REGEXP_LIKE(description,'[[:digit]]'): Matching for a non-digit