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