私はこのHTMLを持っています:
</TABLE>
<HR>
<font size="+1"> Method and apparatus for re-sizing and zooming images by operating directly
on their digital transforms
</font><BR>
font
タグ内のテキストをキャプチャしようとしています。これは私の正規表現です:
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;
しかし、私は空のタイトルを取得します。誰かが私が欠けているものを教えてもらえますか?