Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        print $str, "\n";
        last if length($str)> 10;
    }
    
  2. or download this
    while ($str =~ /(?<!b)a/g) {
    ...