Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我花了上周阅读和重新阅读 pugixml 文档,但我找不到使用 xpath 检索 PCDATA 的方法。
请解释我会从标题中提取文本:
<html><head><title>Hello!</title></head></html>
编辑:将 CData 更正为 PCData
请解释我会从标题中提取文本: <html><head><title>Hello!</title></head></html>
选择此文本节点的一个 XPath 表达式是:
/*/head/title/text()
如果只需要字符串值(而不是文本节点),请使用:
string(/*/head/title)