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

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

Replies are listed 'Best First'.
Re^3: Check if one of the array elements is not empty
by happy.barney (Friar) on Nov 11, 2009 at 07:31 UTC
    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