Help for this page

Select Code to Download


  1. or download this
      foreach my $str ("one", "two", "three") {
          if ($str =~ /^t/) {
    ...
              print "'$str' does not start with 't'\n";
          }
      }