Help for this page

Select Code to Download


  1. or download this
    @array = ("x y.g z 123", "a b.f c 456", "d b.c w 321")
    
  2. or download this
    @include = ("b","q")
    
  3. or download this
    
    my %testHash = map { $_,1} @include;
    ...
             my ($test,$rubbish) = split /\./, $tokens[1];
        push (@keep, $tmp) if (exists $testHash{$test});
    }