Help for this page

Select Code to Download


  1. or download this
    foo( qr/ba[rz]|quux/ );
    foo(   'ba[rz]|quux' );
    
    ...
          # was built with qr.
        return grep /$regex/ => @foo;
    }
    
  2. or download this
    any(@set) =~ /c\((.+)\)/;