Split String in itab by multiple arguments

Hi,

I have a table with the bellow entries:

12;10;11.9-8    aaa    bbbb

12                    aaa     cccc   

I need to split this entry to 3 columns:

12    aaa   bbbb

10    aaa   bbbb

11    aaa   bbbb

9     aaa   bbbb

8     aaa   bbbb

12   aaa   cccc

It is like a split xy at ‘;’ into table, but I have multiple separators.

Do you have an idea how to solve it?

 

Thanks for support!

Scroll to Top