在xpath / xsl中按内部xml选择注释
发布时间:2020-12-16 23:24:08 所属栏目:百科 来源:网络整理
导读:给出以下xml文档 root childnode0/ childnode2/ !--Comment1-- childnode3/ childnode4/ !--Comment2--/root 我知道xpath选择xsl中特定级别的所有注释 string xPath = "/root/comment()"; 但是我想选择内部xml为“Comment2”的注释. 有任何想法吗? 谢谢 戴
给出以下xml文档
<root> <childnode0/> <childnode2/> <!--Comment1--> <childnode3/> <childnode4/> <!--Comment2--> </root> 我知道xpath选择xsl中特定级别的所有注释 string xPath = "/root/comment()"; 但是我想选择内部xml为“Comment2”的注释. 有任何想法吗? 谢谢 戴夫 解决方法
这个
/root/comment()[.='Comment2'] 似乎工作. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |