in reply to Re: splitting on new-line characters
in thread splitting on new-line characters

You will need to repack the data afterwards :-
@array=map(pack('H*',$_),(split /0d0a/,unpack("H*",$array)));
Hope it helps
UnderMine