I have a few known formats in an HTML page, I need to parse the content of the tags
<TR>
<TD align=center>Reissue of:</TD>
<TD align=center> **VALUES_TO_FIND** </TD>
<TD> </TD>
</TR>
<TR>
<TD align=center> </TD>
</TR>
basically I thought I can concatenate the HTML with a regular expression that will match anything inside the spot I'm looking for.
I know that the text before and after VALUES_TO_FIND will always be the same. how can I find it using RE? (I'm dealing with several cases and the format can repeat in several places in the page.
re.findall(), but I don't think that reg exp will work in your case - there is no unique prefix/suffix in the provided data sample. How will you tell "Reissue of:" from " VALUES_TO_FIND " - both have the same prefix and suffix. – mhawke Jul 2 '12 at 11:32