Help for this page

Select Code to Download


  1. or download this
    my @array = split m/(.{8})/, $string;
    @array = grep length, @array
    
  2. or download this
    push @array, $1 while $str =~ m/(.{1,8})/g;