Help for this page

Select Code to Download


  1. or download this
    sub scrapTag  # removes image tags from HTML document
    {
      while($htmlLines[$i] =~ m/<IMG\s+([^>]+)>/ig)
    
  2. or download this
    sub scrapTag {
        foreach my $line (@htmlLines) {
    ...
           $line =~ s/<IMG\s+([^>]+)>//ig;
        }
    }