以下のような解析中の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);
}