in reply to Splitting a String into n-character parts, without using a regex
Could your string contain non-word characters or whitespace that you want paired out as well? If so, this should work:
@row = $string =~ /../g;
Update: If you also need to match newlines (\n) you could use the "s" modifier:
@row = $string =~ /../sg;
Hot Pastrami