Currently I've this, but it is returning null
.
select regexp_substr( 'abcx1bcdx2mno', '[^x[[:digit:]]]+', 1,1 ) from dual;
select regexp_substr( 'abcx1bcdx2mno', '[^x[[:digit:]]]+', 1,1 ) from dual;
I want to have it such a way, that the first query returns abc
, and second one returns bcd
.