我有一个正在解析的 html 字符串,如下所示。我需要获取@Footer 的值。
strHTML = "<html><html>\r\n\r\n<head>\r\n<meta http-equiv=Content-Type
content=\"text/html; charset=windows-1252\">\r\n
<meta name=Generator content=\"Microsoft Word 14></head></head><body>
<p>@Footer=CONFIDENTIAL<p></body></html>"
我已经尝试了下面的代码,我如何获得价值?
Regex m = new Regex("@Footer", RegexOptions.Compiled);
foreach (Match VariableMatch in m.Matches(strHTML.ToString()))
{
Console.WriteLine(VariableMatch);
}