I read from a text file and sometimes I get in a string something like:
;onor Oyj,Native,Uor Oyj1,"Uponor Oyj, UBS, Innovation AB",39639d4d26:-21f7;
I need to split the string like this:
'onor Oyj',
'Native',
'Uor Oyj1',
'Uponor Oyj, UBS, Innovation AB',
'39639d4d26:-21f7',
';'
How can I do this?