Hi,
In Oracle 11g XE and given:
v_string VARCHAR2(1000) := 'foo1 foo2 foo3 bar1';
where foo1 foo2 foo3 and bar1 are separated by tabs.
How could I extract individually foo1, foo2, foo3 and bar1 and iterate over them? How do I parse the varchar2 to get tab separated values?
Thanks,