Help for this page

Select Code to Download


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