Help for this page

Select Code to Download


  1. or download this
    while ($text =~ /(href|<frame .*?src)[ ="']+(.*?)["'>]/g) {
        print $2;
    }
    
  2. or download this
    while ($text =~ /(href|<frame .*?src)[ ="']+((http:)?[^:]*?)["'>]/g) {
        print $2;
    }