Help for this page

Select Code to Download


  1. or download this
    if (/<a href\=\"/) {
      my @link = extract_tagged($_, '<a href="', '">', undef, undef);
      print "  @link[4]\n";
    }
    
  2. or download this
    else {
      my @text = extract_tagged($_, '<li>', '</li>', undef, undef);
      print "  *@text[4]*\n";
    }