my $found = 0; foreach (@long_list_of_values) { if ($var eq $_) { $found = 1; last; } } if ($found) { # do something... }