in reply to Re^4: adding an IF to a push
in thread adding an IF to a push

Change
if (\%add($num) { .. }
to
if (add($num)) { .. }

In context, it would actually be:

sub is_image_size_ok { my ($image) = @_; my $img = get($image); my ($height, $width) = imgsize(\$img); return $height < $max_h and $width < $max_w; } push @array, $string =~ m#stuff#g if is_image_size_ok($image);

Replies are listed 'Best First'.
Re^6: adding an IF to a push
by sulfericacid (Deacon) on Jun 28, 2006 at 05:30 UTC
    Thank you ikegami for clearing that up. I knew it was possible but I couldn't get the syntax to work although now that I look back, I have to wonder what I was thinking in the first place. Easy stuff.


    "Age is nothing more than an inaccurate number bestowed upon us at birth as just another means for others to judge and classify us"

    sulfericacid