in reply to Re: Help with arrays/sub procedures
in thread Help with arrays/sub procedures
Thanks$x = $_;#Take in the whole line while(length($x gt 0)) { $_ = substr($x, 0, 434);#pull out the first 434 + characters. $x = substr($x, 434);#put the rest of the line back + into $x. $_ = " ".$_;#added a space to the beginning so I + could still +use the same file format from position 1.
|
|---|