itunes库上的XSLT

时间:2013-11-04 12:41:34

标签: xml xslt itunes

我需要从itunes library.xml文件中提取Track ID和Location。 我找到了一些XSLT解决方案,但它们都是基于XSLT 2.0版的。

我仅限于XSLT 1.0版。

任何人都可以帮忙解决这个问题。

输出应为:

98,location---
100,location 2
非常感谢你的帮助  的Matthias

<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
   <dict>
      <key>Tracks</key>
      <dict>
         <key>98</key>
         <dict>
            <key>Track ID</key>
            <integer>98</integer>
            <key>Name</key>
            <string>xxxxxx</string>
            <key>Location</key>
            <string>location---</string>
         </dict>
         <key>100</key>
         <dict>
            <key>Track ID</key>
            <integer>100</integer>
            <key>Name</key>
            <string>name2</string>
            <key>Location</key>
            <string>location 2</string>
         </dict>
      </dict>
   </dict>
</plist>

3 个答案:

答案 0 :(得分:2)

因此,对于跟踪key中的每个dict,您要提取Location。怎么样:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="text" />

  <xsl:template match="/">
    <xsl:apply-templates select="plist/dict/dict/key" />
  </xsl:template>

  <xsl:template match="key">
    <xsl:value-of select="." />
    <xsl:text>,</xsl:text>
    <!-- find the dict corresponding to this key, and extract the value of
         the Location entry -->
    <xsl:value-of select="
       following-sibling::dict[1]/key[. = 'Location']/following-sibling::string[1]" />
    <xsl:text>&#10;</xsl:text>
  </xsl:template>
</xsl:stylesheet>

如果plist始终将Location作为最后一个条目,那么您可以简单地说

    <xsl:value-of select="following-sibling::dict[1]/string[last()]" />

但是通过找到正确的键值然后执行它的第一个string来实现它会更加健壮。

答案 1 :(得分:0)

将文件头中的XSLT版本号更改为1.0。我无法想象输出这个简单需要1.0不支持的任何东西。

答案 2 :(得分:0)

假设输入正确(另外一个结束</dict>),您可以使用以下样式表。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   <xsl:output method="text" />
   <xsl:template match="/">
      <xsl:apply-templates />
   </xsl:template>
   <xsl:template match="plist">
      <xsl:apply-templates />
   </xsl:template>
   <xsl:template match="dict[parent::plist]">
      <xsl:apply-templates />
   </xsl:template>
   <xsl:template match="key[.='Tracks']/dict">
      <xsl:for-each select="descendant::dict">
         <xsl:value-of select="preceding-sibling::key" />
         <xsl:text>,</xsl:text>
         <xsl:value-of select="descendant::key[.='Location']/following-sibling::string" />
         <xsl:text />
      </xsl:for-each>
   </xsl:template>
   <xsl:template match="key|string[preceding-sibling::key[1]='Name']" />
</xsl:stylesheet>

编辑 @Ian是的,你当然是对的。我改变了我的评论。

请注意,您必须依赖于导航文档树,例如following-sibling因为XML文件的层次结构很浅。