Help for this page

Select Code to Download


  1. or download this
    while (length $input > 6){
       my $front = substr($input, 0, 6);
       $input    = substr($input, 6);
       push @sets_of_six, $front;
    }
    
  2. or download this
    while (length $input > 6){
       my $front = substr($input, 0, 6, '');
       push @sets_of_six, $front;
    }
    
  3. or download this
    while (length $input > 6){
       push @sets_of_six, substr($input, 0, 6, '');
    }