Help for this page

Select Code to Download


  1. or download this
       # ...
       if ( $file =~ /$start_pattern(.*?)$end_pattern/s ) {
          print $1;
       }
       # ...
    
  2. or download this
       #
       while ( $file =~ /start_pattern(.*?)$end_pattern/gs ) {
          print "$1\n";
       }
       #