Can you please help, I am trying to create a pattern for the following:
I want to get the Href folio number information, which is 514123456780 excluding and get the names which is the next cell and the address (the third cell)
i tried to use the pattern but it does'nt work. i am really really poor at regular expressions.
$pattern = "@<TR><TD>([^<]*)[</TD>|</TR>]~si";
<TR>
<TD NoWrap VAlign = "Top">
<FONT Color = "Black" Size = "2">
<B>
<A HREF = "Inc_RecInfo.cfm?URL_Folio=514123456780">
514123456780
</A>
</B>
</FONT>
</TD>
<TD VAlign = "Middle" NoWrap>
<FONT Color = "Black" Size = "2">
<B>
Juan,Cruz & Felicita,Cruz
</B>
</FONT>
</TD>
<TD VAlign = "Middle" NoWrap>
<FONT Color = "Black" Size = "2" NoWrap>
<B>
15844 SW 21 STREET
</B>
</FONT>
</TD>
</TR>
Thank you very much for the help.