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