0

I am trying to split a string usin Regexp.

String is comma separated.

Regexp is working but when I am trying to export in CSV it is showing me special characters.

That's why I want to split string without Regex p. I used this Code

select regexp_substr (
         str,
         '[^,]+',
         1,
         level
       ) value
from   rws
connect by level <= 
    length ( str ) - length ( replace ( str, ',' ) ) + 1;
MT0
  • 143,790
  • 11
  • 59
  • 117
Isha
  • 1
  • 1

0 Answers0