views:

95

answers:

2

I need to write a procedure to normalize a record that have multiple tokens concatenated by one char, I need to obtain these tokens splitting the string and insert each one as a new record in a table. Does Oracle have something like a "split" function?

+4  A: 

There is apex_utility.string_to_table - see my answer to this question.

Also, prior to the existence of the above function, I once posted a solution here on my blog.

Tony Andrews
Thanks for the tip, sadly, I cannot use that package, so I ended up using the functions posted by redFilter.
Sam