Help for this page

Select Code to Download


  1. or download this
    @regex = ( 'foo' 'b[a-z]' );
    $string = 'foo';
    ...
    
    if ($matched) {
    ...
    
  2. or download this
    if ( grep($regex, @strings) {
    ...
    
  3. or download this
    if ( map(string =~ /$_/, @regex) ) {
    ...