Help for this page

Select Code to Download


  1. or download this
    {
      local $/ = undef;
    ...
    if ( $wholetext =~ /\b$searchword\b/ ) {
         # do something
    }
    
  2. or download this
    open( FILE, $filename ) or die "yadda yadda";
    @data = <FILE>;
    if ( grep /\b$searchword\b/, @data ) {
        # do something;
    }