Help for this page

Select Code to Download


  1. or download this
    $str="There's many more ways to do it.\n";
    
    ...
    while ( $str =~ /(.)/g ) {
       $count++;
    }
    
  2. or download this
    $count2++ while chop $str;
    $count eq $count2 or warn "there's something wrong with this code.\n";