in reply to Splitting a String into n-character parts, without using a regex
@row = grep(/./, split(/(.{$num})/, $string));
Where $num is the number of characters you want each element to contain (obviously, the last element may contain less characters than the others).