Help for this page

Select Code to Download


  1. or download this
    my @array = qw/this that those these/;
    foreach my $word ( @array ) {
        print $word, "\t";
        redo if $word =~ m/that/;
    }