HTML Agility Pack Parsing With Upper & Lower Case Tags?

我是研究僧i 提交于 2019-12-17 20:39:13

问题


I am using the HTML Agility Pack to great effect, and am really impressed with it - However, I am selecting content like so

doc.DocumentNode.SelectSingleNode("//body").InnerHtml

How to I deal with the following situation, with different documents?

<body>
<Body>
<BODY>

Will my code above only get the lower case versions?


回答1:


The Html Agility Pack handles HTML in a case insensitive way. It means it will parse BODY, Body and body the same way. It's by design since HTML is not case sensitive (XHTML is).

That said, when you use its XPATH feature, you must use tags written in lower case. It means the "//body" expression will match BODY, Body and body, and "//BODY" will match nothing.



来源:https://stackoverflow.com/questions/5776327/html-agility-pack-parsing-with-upper-lower-case-tags

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!