Try using <code> tags around your html to prevent it from rendering.

Otherwise, I think you need something like this:

m/<a[^>]* # an anchor tag href= # the Href in the anchor (["'])((?:(?!\1).)*)\1 # the value in the href [^>]*> # anything to the end of the anchor [^<>]* # the content in the anchor tag <\/a> # the end of the anchor (?:\s|<[^>]*>)+ # any whitespace or html tags (\d{9}) # the 9 digit number /isxm; my $href = $2; my $number = $3;

Update:

my $re = qr/<a[^>]* # an anchor tag href= # the Href in the anchor (["'])((?:(?!\1).)*)\1 # the value in the href [^>]*> # anything to the end of the anchor [^<>]* # the content in the anchor tag <\/a> # the end of the anchor (?:\s|<[^>]*>)+ # any whitespace or html tags (\d{9}) # the 9 digit number /isxm; my $string = do{local $/; <DATA>}; while($string =~ m/$re/g){ my $href = $2; my $number = $3; print "$number - $href\n"; } __DATA__ <a name="a"></a> <h2>A</h2> <table border="0" cellpadding="0" cellspacing="0" width="1 +00%"> <tr> <td> <table id="a" border="1" bordercolor="#333366" ce +llpadding="5" cellspacing="0" width="100%"> <tr> <td width="33%" class="clsTableBody" valign +="top" id="firstCol"><a href="pdf\c76b834e-36e1-497b-b13e-eba2348dc04 +4.pdf" target="_blank">Abbott, Evelyn</a><br/><span>110136892</span>< +br/><a href="pdf\8a956f66-1c60-48fc-905c-b49d617aa6c5.pdf" target="_b +lank">Agnew, Thomas</a><br/><span>110377660</span><br/></td> <td width="34%" class="clsTableBodyClear" v +align="top" id="secondCol"><a href="pdf\37d3e78b-1adb-458b-9e89-0df78 +0909f08.pdf" target="_blank">Allison, David</a><br/><span>108116112</ +span><br/><a href="pdf\6c0a5bb4-143d-4305-957b-796c8193d07a.pdf" targ +et="_blank">Allison, Gary Owen</a><br/><span>116815754</span><br/></t +d> <td width="33%" class="clsTableBody" valign +="top" id="thirdCol"><a href="pdf\ae8d51e0-005b-44be-84cb-3c9b5733575 +5.pdf" target="_blank">Arsenault, Michael</a><br/><span>108318866</sp +an><br/><a href="pdf\e646f948-f78d-4463-a01d-0261aebf70dc.pdf" target +="_blank">Arsenault, Normand A.</a><br/><span>113069066</span><br/></ +td> </tr> </table> </td> </tr> </table>

Output:

110136892 - pdf\c76b834e-36e1-497b-b13e-eba2348dc04 +4.pdf 110377660 - pdf\8a956f66-1c60-48fc-905c-b49d617aa6c5.pdf 108116112 - pdf\37d3e78b-1adb-458b-9e89-0df78 +0909f08.pdf 116815754 - pdf\6c0a5bb4-143d-4305-957b-796c8193d07a.pdf 108318866 - pdf\ae8d51e0-005b-44be-84cb-3c9b5733575 +5.pdf 113069066 - pdf\e646f948-f78d-4463-a01d-0261aebf70dc.pdf

They say that time changes things, but you actually have to change them yourself.

—Andy Warhol


In reply to Re: Process a HTML file to get information from it. by JediWizard
in thread Process a HTML file to get information from it. by Griffler

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.