in reply to spliting text!!

This will chop up your string into chunks that are a maximum of 70 characters, if that's what you're looking for.
my @array = $string =~ /.{1,70}/gs; # Maybe?
There are other solutions using unpack() and substr() and the like too if those are more to your understanding.