使用xsl中的regex从url解析mp3文件名

时间:2013-02-01 21:03:44

标签: xml regex xslt xml-parsing

我有一个rss feed,我需要将其转换为不同的XML架构。同时,将mp3文件名解析为新字段。我有一个xsl似乎适用于其余的转换(为我编写),但我不知道如何做到这一点:

    <enclosure url="http://www.fffff.com/pts/redirect.mp3/audio.xxyy.org/musiccheck/musiccheck20130118pod.mp3" length="0" type="audio/mpeg"></enclosure>

变成这个:

    <fileIdentifier source="Theme">musiccheck20130118pod</fileIdentifier>

2 个答案:

答案 0 :(得分:0)

对您的网址格式做出一些假设,即文件名是最后一个包含.mp3的内容:

/[\S\s]*?url="[\S\s]*?\/([\w]+?\.mp3)".*?/$1/

注意到你想得到的第二部分是:

/[\S\s]*?url="[\S\s]*?\/([\w]+?\.mp3)".*?/<fileIdentifier source="Theme">$1</fileIdentifier>/

答案 1 :(得分:0)

以下是不使用正则表达式的XSLT 1.0中的完整解决方案:

<xsl:template match="enclosure">
<xsl:variable name="url" select="./@url"/>
<xsl:variable name="name">
  <xsl:call-template name="last-substring-after">
    <xsl:with-param name="string" select="$url"/>
    <xsl:with-param name="separator" select="'/'"/>
  </xsl:call-template>
</xsl:variable>
<fileIdentifier source="Theme">
<xsl:value-of select="substring-before($name, '.')"/>
</fileIdentifier>
</xsl:template>


<xsl:template name="last-substring-after">
  <xsl:param name="string"/>
  <xsl:param name="separator"/>
  <xsl:choose>
    <xsl:when test="contains($string, $separator)">
      <xsl:call-template name="last-substring-after">
        <xsl:with-param name="string"
                        select="substring-after($string, $separator)"/>
        <xsl:with-param name="separator"
                        select="$separator"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$string"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

输出将是

<fileIdentifier source="Theme">musiccheck20130118pod</fileIdentifier> 

Source