我想用某種格式解析xml文檔。如果我有嵌入黑白註釋的標籤值,例如使用xpath在xml中獲取值嵌入的b/w註釋
<document>
<field loc="field1">field name 1</field>
<field loc="field2"><!--this is a comment-->field name 2<!--also a comment--></field>
</document>
我可以得到field1的值,但是當我試圖讓值場2,它失敗:
/document/field[@loc='field2']
任何幫助將不勝感激。 謝謝