Help for this page

Select Code to Download


  1. or download this
    my $category = first { ... } ... ;
    if ($category) {
        $category = $category->[1];
        print "[INFO] Category: $category\n";
    }
    
  2. or download this
    map $_->[1],
    grep $_,
    first { .... } ...;