can any one help me to get generic regular expression for my html file ....
My html is....
<tr class="evenline"><td width="40%" align="right">ModelPerReq</td><td width="60%" align="left"><b>Mand M2CU 10</b></td></tr> <tr class="evenline"><td width="40%" align="right">Serial_1 num</td><td width="60%" align="left"><b>GFRTF%65*jh</b></td></tr><tr class="evenline"><td width="40%" align="right">Host name</td><td width="60%" align="left"><b><not known></b></td></tr>
here i need to extract only the text marked in red......
for this i've written RE like : >[\w\n ]*<
but it is not quite good always.........
can u pls give me a generic RE.....
ThanX in advance

Regular expression gor parsing the html
Amde
The regex uses named capture groups so one can easily extract what you want...Tag | Attribute | Text. You are insterested in Text so access it via a match
match.Groups("Text").Value