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?
[download]
There are other solutions using
unpack()
and
substr()
and the like too if those are more to your understanding.
duff
Comment on
Re: spliting text!!
Select
or
Download
Code
In Section
Seekers of Perl Wisdom