in reply to multiple options for pattern match help
my $string = 'somechar acters'; if ($string =~ /(int)|(char)|(bool)|(long)/){ print "matches\n"; } [download]
matches [download]