in reply to Re: Splitting a String into n-character parts, without using a regexin thread Splitting a String into n-character parts, without using a regex
@row = 'aabbccddee' =~ /\w{1,2}/g; [download]