Help for this page

Select Code to Download


  1. or download this
    my @array = map {  substr $string, $_, 4  }  0  ..  length( $string ) 
    +- 4;
    
  2. or download this
    my $pos = 0;
    while( $pos <= length( $string ) - 4 ) {
      push @array, substr( $string, $pos++, 4 );
    }