Help for this page

Select Code to Download


  1. or download this
    grep /$searchtext/$modifiers @stuff
  2. or download this
    @stuff = ('This is some text.','This is more text.');
    $stext = '/some/i';
    
    ...
    foreach (grep /$text/$mod, @stuff) {
        print $_, "\n";
    }