Help for this page

Select Code to Download


  1. or download this
    local $/ = "<br>";
    while ( <DATA> ) {
       print $1 if /Title:(.*?)<br>/s;
    }
    
  2. or download this
    $whole_file =~ /Title:.*?</b>(.*?)<br>/ms;
    
  3. or download this
    undef $/;
    chomp($whole_file = <IN>);
    $whole_file =~ s/.*?Title:.*?<\/b>(.*?)<br>/$1/ ;
    print "$whole_file";
    
  4. or download this
    while ( <DATA> ) {
       print if /<b>/ .. /<br>/;
    }
    
  5. or download this
    print if /<b>/ .. /<br>/;