Link to home
Start Free TrialLog in
Avatar of dotnet22
dotnet22

asked on

Parsing html row with a regular expression

Hi, I 'm trying to parse these two rows out with a regular expression... But I have not been able to come up with an expression? The only thing that is known is that Footer Note will ALWAYS be present.

<TR>
          <TH something in here>Footer Note</TH></TR>
        <TR>
          <TD something in here could be anything> SOME Text in here could be anything</TD></TR>
Avatar of prakash_prk
prakash_prk
Flag of India image

what do u really want to extract from this content?
Avatar of dotnet22
dotnet22

ASKER

From the first  <TR> to the last </TD></TR>
ASKER CERTIFIED SOLUTION
Avatar of Shiju S
Shiju S
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
also insert namespace

using System.Text.RegularExpressions;