我有这段 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;
但是我得到空标题。谁能告诉我我错过了什么?