I am not an expert in regexp, but as default should be case sensitive on. I try to figure it out why the regexp gives me the first 2 characters when the first one is capital
select regexp_substr('JohnFoo','[a-z]{2}') from dual;
the output is 'Jo'
if I tried this
select regexp_substr('JohnFoo','^[a-z]{2}') from dual;
the output is the same but it should recognize 2 non capital letters at the beginning so in this case no match
then I tried the same with all arguments
select regexp_substr('JohnFoo','[a-z]{2}',1,1,'c') from dual;
again the output is 'Jo' instrad of 'oh'
what am I doing wrong?this behavior is same fot substr ,replace as well. it seems to me like ignoring the capitals