Reply-to: "Perl Mongers of Omaha, Nebraska USA" <omaha-pm@pm.org>
Thread-index: AcbjKH7p7TWEnsVzRFOC4vJ0nxzKbw==
Thread-topic: and not and not and not and not...
Project: Add "VRMCH" to this list:
if ((not $row[0] =~ /RMCHG/) and (not $row[0] =~ /RMCHRG/)
and (not $row[0] =~ /REUN/)) {
Solution:
if ($row[0] !~ /^(RMCHG|RMCHRG|REUN|VRMCH)$/) {
j