我正在尝试提取 html 文件的文本,但标签内部出现以下文本:
<h3>Café<h3>
并使用以下代码提取文本时:
htmlDocument.DocumentNode.SelectSingleNode("some XPath").InnerText;
我得到这个字符串 "Cafédirect" 。怎么能解决这个问题?
我正在尝试提取 html 文件的文本,但标签内部出现以下文本:
<h3>Café<h3>
并使用以下代码提取文本时:
htmlDocument.DocumentNode.SelectSingleNode("some XPath").InnerText;
我得到这个字符串 "Cafédirect" 。怎么能解决这个问题?