Help for this page

Select Code to Download


  1. or download this
    # Step 1:  Dump the entire document
    while (my $tok = $p->get_token) {
        print Dumper($tok);
    }
    
  2. or download this
    use constant TYPE => 0;
    use constant TEXT => 1;
    ...
        $wanted{password} = trim($next->[TEXT]);
        last;
    }