如何使用XQuery和plist XML文件查找值

时间:2013-04-19 20:58:09

标签: xml xsd plist xquery basex

以下示例Plist文件用于我的问题。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>firstDictionary</key>
    <dict>
        <key>string</key>
        <string>someText</string>
        <key>anArray</key>
        <array>
            <string>first</string>
            <string>second</string>
        </array>
    </dict>
    <key>secondDictionary</key>
    <dict>
        <key>subDictionary</key>
        <dict>
            <key>aBoolValue</key>
            <false/>
        </dict>
    </dict>
</dict>
</plist>

所以我的问题是,因为这是一个Plist(使用XCode),所有键都有元素名称<key>,值可以是,等等......键值对总是侧面 - 旁边(直接兄弟姐妹)..

有没有办法使用XQuery生成密钥的值?比如说retuenValueForKey(secondDictionary)产生以下内容?

<dict>
    <key>subDictionary</key>
    <dict>
        <key>aBoolValue</key>
        <false/>
    </dict>
</dict>

到目前为止,我的主要参考是this link from W3Schools,但我无法使其正常工作。

1 个答案:

答案 0 :(得分:1)

你可以在纯XPath中完成它,但如果你想将它包装在一个应该也能正常工作的函数中:

declare function local:returnValueForKey(
  $key as xs:string,
  $plist as element(plist)
) as element(dict)?
{
   $plist//key[. = $key]/following-sibling::*[1]/self::dict
};

local:returnValueForKey('secondDictionary', <plist>...</plist>)
=>
<dict>
  <key>subDictionary</key>
  <dict>
    <key>aBoolValue</key>
    <false/>
  </dict>
</dict>