Hi Lee
I am afraid I am a novice with Perl but this does do what you need - albeit a bit messy as it will cut words up - I will try to work on one that will not
open (INFILE, 'sixtyfour.txt');
$file = <INFILE>;
for ($position = 0; $position < length($file); $position +=64) {
print substr($file, $position, 64);
print "\n";
}
Basically it is just a for/next loop with an increment of 64 units - it 'walks' through a string using the 'substring' function
Please let me know if this has been of any use
Regards
Duncan