in reply to Check if one of the array elements is not empty

In addition to grep, see also List::MoreUtils::any.

Replies are listed 'Best First'.
Re^2: Check if one of the array elements is not empty
by CountZero (Bishop) on Nov 11, 2009 at 07:01 UTC
    And the nice thing about List::MoreUtils::any is
    1. that it will return as soon as it found a "match" in the array and does not have to run through all elements as grep does;
    2. it can take any function or subroutine as an argument to match, not only a regex.
    .

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

      ad 1. on other side, grep in scalar content returns number of matching elements, so you can do tests like "at least N elements match"
      ad 2. same you can do with grep
        Ad ad 2: Silly me thinking grep only takes a regex!

        Note to self: re-read the perldocs every three months/

        CountZero

        A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James