Hello, I want to parse a HTML code and create objects from their text representation in table. I have several columns and I want to save context of certain columns on every row. Now, I have the HTML code and I understand I should use Pattern and Matcher to get those strings, but I don't know how to write required regular expression.
This is a row I will be parsing:
<tr><td><a href="delirium.htm">Delirium</a></td><td>65...</tr>
So, I want to extract Delirium from that string. How do I write regular expression that sais
get me the string that is between the string htm">
and </a></td>
?