Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for my $item ("qwe", "qwer", "tyu", "yui", "tyui") {
        print grep($_->[0] ~~ /^$item$/, @list) . " " . $item . "\n";
    }