- or download this
<A HREF="http://www.cnn.com/WEATHER/index.html">
- or download this
if($url =~ /^<A\s+HREF\=\"http\:\/\/www.cnn.com/i)
{
print "skip this url.\n";
next;
}
- or download this
if($url =~ /<A HREF\=\"http\:\/\/www\.cnn\.com\/WEATHER\/index\.html\"
+>/i)
{
print "Skip this url.\n";
next;
}
- or download this
if($url =~ /<A HREF="http://www.cnn.com/WEATHER/index.html">/i)
{
print "skip this url.\n";
next;
}