- or download this
foreach (@results) {
if ($_ =~ m/(http\:\/\/).+/) {
print "URL found: ".$_,"\n";
}
}
- or download this
foreach (@results) {
if (/(http\:\/\/).+/) {
...
print "\n";
}
}
- or download this
foreach $url (@results) {
if ($url =~ m/(http\:\/\/).+/) {
print "URL found: " . $url, "\n";
}
}