I have this piece of HTML:
</TABLE>
<HR>
<font size="+1"> Method and apparatus for re-sizing and zooming images by operating directly
on their digital transforms
</font><BR>
and I am trying to capture the text inside font
tag. This is my Regex:
Regex regex = new Regex("</TABLE><HR><font size=\"+1\">(?<title>.*?)</font><BR>", RegexOptions.Singleline | RegexOptions.IgnoreCase);
Match match = regex.Match(data);
string title = match.Groups["title"].Value;
However I get empty title. Can anybody tell me what am I missing?