Help for this page

Select Code to Download


  1. or download this
    <tr>
              <td>Experience:</td>
              <td><b>1101</b></td>
            </tr>
    
  2. or download this
    #from
    my ($xp) = $page =~ /<TR><TD>Experience:<\/TD><TD> <B>(\-?\d+)<\/B><\/
    
    #to
    my ($xp) = $page =~ /Experience:[^\d-]+(\-?\d+)/;