我见过的名称空间不可知语法令我困惑.
说我有:
<root> <parent attribute="A">A<child>A</child></parent> <parent attribute="B">B<child>B</child></parent> </root>
到目前为止,我看到如何:
/root/parent/child/text()
翻译为:
/*[local-name()='root']/*[local-name()='parent']/*[local-name()='child']/text()
但我正在努力做这样的事情:
/root/parent[@attribute="A"]/child/text()
要么:
/root/parent[text()="B"]/child/text()
要么:
/root/parent[1]/child/text()
这些翻译怎么样?
谢谢,
编辑:再一次:-)
<root> <parent> <childName>serverName</childName> <childValue>MyServer</childValue> </parent> <parent> <childName>ServerLocation</childName> <childValue>Somewhere</childValue> </parent> </root>
这是如何翻译的?
/root/parent[childName="serverName"]/childValue/text()
The namespace agnostic Syntax I’ve
seen around is confusing me.
首先,我建议你不要使用这种语法,特别是如果它令人困惑.它也可能导致错误 – 请参阅我的答案的结尾以获取详细信息.
在命名空间中指定XPath表达式名称的标准方法是使用XPath引擎注册命名空间(请参阅相应的特定于供应商的文档),然后使用绑定到已注册命名空间的前缀(例如“x”) )名称如x:someName
关于这个主题有很多好的答案 – 不要使用其中一个.
现在,如果由于某种原因你仍然决定使用令人困惑的语法,那么:
but i’m struggling with things like
this:
/root/parent[@attribute="A"]/child/text()
使用:
/*[local-name()='root']/*[local-name()='parent' and @attribute='A']
然后:
or:
/root/parent[text()="B"]/child/text()
使用:
/*[local-name()='root']/*[local-name()='parent' and text()='B'] /*[local-name()='child']/text()
然后:
or:
06002
使用:
/*[local-name()='root']/*[local-name()='parent'][1] /*[local-name()='child']/text()
然后:
One More