Help for this page

Select Code to Download


  1. or download this
      while ( $html =~ m{<div[^>]*>(.*?)</div>}sgi ) {
        my $inside_div = $1;
    ...
        # process contents of $inside_div
        ...
      }