my @match = (); @match = grep /$pattern/,@someOtherArray; if (#match is empty#) { #do something! }
这样做的标准方法是什么?
if (!@match) if (@match == 0) if (scalar @match == 0)
在标量上下文中,数组被计算为它包含的元素的数量。