我试图提取“价值”的价值。节点,其中'键'节点是' state'在bash shell中:
<FrontendStatus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" serializerVersion="1.1">
<script/>
<State>
<String>
...
...
</String>
<String>
...
...
</String>
<String>
<Key>state</Key>
<Value>WatchingLiveTV</Value>
</String>
<String>
<Key>studiolevels</Key>
<Value>1</Value>
</String>
<String>
...
...
</String>
<String>
...
...
</String>
</State>
</FrontendStatus>
如果我直接引用节点,我可以提取值:
$ xmlstarlet sel -t -m '/FrontendStatus[1]/State[1]/String[31]' -v Value <status.xml
WatchingLiveTV
但我想根据&#39; Key&#39;的值来选择它。而是
节点答案 0 :(得分:7)
此XPath将根据其Value
等于State
选择Key
state
:
/FrontendStatus/State/String[Key='state']/Value
或者,在xmlstarlet中:
$ xmlstarlet sel -t -m "/FrontendStatus/State/String[Key='state']" -v Value <status.xml
将按要求返回WatchingLiveTV
。
答案 1 :(得分:0)
我能够使用以下XPath找到该节点:
/FrontendStatus/State/String[Value = 'WatchingLiveTV']/Value
将返回:
<Value>WatchingLiveTV</Value>
请注意,您也可以使用:
//String[Value = 'WatchingLiveTV']/Value
略小一点。
要选择Value元素和父/兄弟,您可以使用:
//String[Value = 'WatchingLiveTV']
返回:
<String>
<Key>state</Key>
<Value>WatchingLiveTV</Value>
</String>
修改强>
我刚刚重新阅读了原来的问题。您希望根据Key
节点的值选择XML。您可以使用上述方法执行此操作,但将谓词从Value
更改为Key
:
//String[Key = 'state']/Value
@kjhughes已经把它放到你想要的语法格式中。
我希望有所帮助。