Help for this page

Select Code to Download


  1. or download this
    split'[\w|\W]';
    
  2. or download this
    my @array;
    for(0..$#string){
    my $i = $_;
    push @array,substr($string,$1,1);
    }