# Multigenderfier $theVar = "iT"; $theMatch = "he|she|it" if ($theVar =~ /$theMatch/i) { (print "Match One\n"); # Would Match } $theVar = "HE"; if ($theVar =~ /$theMatch/i) { (print "Match One\n"); # Would Match }