in reply to Splitting a String into n-character parts, without using a regex

$_='aAbBcCdDeE'; $_=reverse; push @r, chop().chop while length;
  • Comment on Re: Splitting a String into n-character parts, without using a regex
  • Download Code