Help for this page

Select Code to Download


  1. or download this
    my %hash;
    $hash{$1} = $2 while $var =~ /storeID = (\d+)\s+(.*?)end/gs;
    
  2. or download this
    my $criterion = ...;
    
    print "storeID = $_\n", $hash{$_} for grep { $hash{$_} =~ /$criterion/
    + } keys %hash;