I want to extract everything from "<td valign=top><B>Any Name</B>" through at least the first instance of "<BR><I>(Plaintiff)</I></td>". (It would be nice if I could extract through the last instance, but I don't need miracles.)
Here is a sample of the source data:
Code: Select all
<td valign=top><B>Any Name</B>
<BRLaw Law Firm
<BR>11 East Wacker Drive
<BR>Suite 5759
<BR>Chicago, IL 60601
<BR>(312) 123-4567
<BR>LawyerName@AnyLawFirm.com<br>
<I>Assigned: 12/04/2015</I><br>
<I>ATTORNEY TO BE NOTICED</I></td>
<td>representing </td>
<td><B>Any Name</B>
<BR><I>(Plaintiff)</I></td>
</TR><td valign=top></td>
<td></td>
<td><B>Another Name </B>
<BR><I>(Plaintiff)</I></td>
</TR><td valign=top></td>
<td></td>
<td><B>Someones Name </B>
<BR><I>(Plaintiff)</I></td>
</TR><td valign=top><B>DefendantFirm</B>
<BR>Big Law Firm
<BR>214 West Monroe Street
<BR>Suite 7410
<BR>Chicago, IL 60606
<BR>(312) 456-7890
<BR>LitigastorName@SomeLawOffice.com<br>
<I>Assigned: 11/22/2015</I><br>
<I>ATTORNEY TO BE NOTICED</I></td>
<td>representing </td>
<td><B>DefendantFirm</B>
<BR><I>(Defendant)</I></td>
Thank you in advance.
Jerry