Help for this page
@regex = ( 'foo' 'b[a-z]' ); $string = 'foo'; ... if ($matched) { ...
if ( grep($regex, @strings) { ...
if ( map(string =~ /$_/, @regex) ) { ...