Hi All,
Can you please help me to spot the issue in the regexp_substr ? Why below query is returning the values with space in the second result?
select regexp_substr('330,
331','[^,]+', 1, level) as sno from dual
connect by regexp_substr('330,
331','[^,]+', 1, level) is not null;
Below is the result from sqldeveloper


Regards,
Roots