Hi,
I am trying to split a big chunk of string separated by semicolons into pieces of smaller ones and assign each smaller piece to different variables. It's like: $bigstr=piece1;piece2'piece3 and I want it to be like:
$smallstr1=piece1;
$smallstr2=piece2; and so forth;
How could I do it?
Thanks
Zhen