Help for this page

Select Code to Download


  1. or download this
    for my $c (split //, $string) {
       print $c;
    }
    
  2. or download this
     
    while ( $string =~ m/(.)/g ){
        print $1;
    }