我正在尝试提取"value"节点的值,其中"Key"节点是bash shell中的"state":
<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
但我想通过"Key"节点的值来选择它,而不是
此XPath将根据Key
等于state
:来选择State
的Value
/FrontendStatus/State/String[Key='state']/Value
或者,在xmlstarlet:中
$ xmlstarlet sel -t -m "/FrontendStatus/State/String[Key='state']" -v Value <status.xml
将按要求返回WatchingLiveTV
。
我能够使用以下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已经将其转换为您想要的语法格式。
我希望这能有所帮助。