Help for this page

Select Code to Download


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