Help for this page

Select Code to Download


  1. or download this
        $whole_thing =~
          m|<some unique html start string>(.*?)<end string>|s;
        $good_chunk = $1;
    
  2. or download this
    ($good_chunk) = $whole_thing =~
          m|<some unique html start string>(.*?)<end string>|s;