1

我在进行非常简单的 XSLT 转换时遇到了麻烦。假设这是输入 XML 文档:

<root>
  <myString>ABBCD</myString>
</root>

输出 XML 应该是:

<root>
    <myCharacters>
        <character>
            <id>1</id>
            <value>A</value>
        </character>
        <character>
            <id>2</id>
            <value>B</value>
        </character>
        <character>
            <id>3</id>
            <value>B</value>
        </character>
        <character>
            <id>4</id>
            <value>C</value>
        </character>
        <character>
            <id>5</id>
            <value>D</value>
        </character>
    </myCharacters>
</root>

有没有一种简单的方法可以拆分这样的字符串并在其上增加索引?

4

2 回答 2

3

在 XSLT 2.0 中这很容易......

XML 输入

<root>
    <myString>ABBCD</myString>
</root>

XSLT 2.0

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="myString">
        <myCharacters>
            <xsl:analyze-string select="." regex=".">
            <xsl:matching-substring>
                <character>
                    <id><xsl:value-of select="position()"/></id>
                    <value><xsl:value-of select="."/></value>
                </character>
            </xsl:matching-substring>
        </xsl:analyze-string>
        </myCharacters>
    </xsl:template>

</xsl:stylesheet>

XML 输出

<root>
   <myCharacters>
      <character>
         <id>1</id>
         <value>A</value>
      </character>
      <character>
         <id>2</id>
         <value>B</value>
      </character>
      <character>
         <id>3</id>
         <value>B</value>
      </character>
      <character>
         <id>4</id>
         <value>C</value>
      </character>
      <character>
         <id>5</id>
         <value>D</value>
      </character>
   </myCharacters>
</root>

这在 1.0 中也不可怕。您可以使用递归模板。以下将产生相同的输出:

XSLT 1.0

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="myString">
        <myCharacters>
            <xsl:call-template name="analyzeString">
                <xsl:with-param name="string" select="."/>
            </xsl:call-template>
        </myCharacters>
    </xsl:template>

    <xsl:template name="analyzeString">
        <xsl:param name="pos" select="1"/>
        <xsl:param name="string"/>
        <character>
            <id><xsl:value-of select="$pos"/></id>
            <value><xsl:value-of select="substring($string,1,1)"/></value>
        </character>
        <xsl:if test="string-length($string)>=2">
            <xsl:call-template name="analyzeString">
                <xsl:with-param name="pos" select="$pos+1"/>
                <xsl:with-param name="string" select="substring($string,2)"/>
            </xsl:call-template>
        </xsl:if>
    </xsl:template>

</xsl:stylesheet>
于 2013-03-17T18:35:19.263 回答
1

一、XSLT 1.0 解决方案

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:variable name="vStyle" select="document('')"/>

 <xsl:template match="myString">
  <xsl:variable name="vStr" select="."/>
  <root>
    <myCharacters>
      <xsl:for-each select=
      "($vStyle//node()|$vStyle//@*|$vStyle//namespace::*)
                      [not(position() > string-length($vStr))]">

        <character>
            <id><xsl:value-of select="position()"/></id>
            <value><xsl:value-of select="substring($vStr,position(),1)"/></value>
        </character>
      </xsl:for-each>
    </myCharacters>
  </root>
 </xsl:template>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时:

<root>
  <myString>ABBCD</myString>
</root>

产生了想要的正确结果:

  <root>
   <myCharacters>
      <character>
         <id>1</id>
         <value>A</value>
      </character>
      <character>
         <id>2</id>
         <value>B</value>
      </character>
      <character>
         <id>3</id>
         <value>B</value>
      </character>
      <character>
         <id>4</id>
         <value>C</value>
      </character>
      <character>
         <id>5</id>
         <value>D</value>
      </character>
   </myCharacters>
</root>

或者,使用 FXSL,可以使用如下str-map模板:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:testmap="testmap" xmlns:f="http://fxsl.sf.net/"
 xmlns:ext="http://exslt.org/common" exclude-result-prefixes="xsl f ext testmap">
   <xsl:import href="str-dvc-map.xsl"/>
   <testmap:testmap/>
   <xsl:variable name="vTestMap" select="document('')/*/testmap:*[1]"/>

   <xsl:output omit-xml-declaration="yes" indent="yes"/>

   <xsl:template match="myString">
    <xsl:variable name="vrtfChars">
     <xsl:call-template name="str-map">
       <xsl:with-param name="pFun" select="$vTestMap"/>
       <xsl:with-param name="pStr" select="."/>
     </xsl:call-template>
    </xsl:variable>

    <myCharacters>
      <xsl:apply-templates select="ext:node-set($vrtfChars)/*"/>
    </myCharacters>
   </xsl:template>

    <xsl:template name="enumChars" match="*[namespace-uri() = 'testmap']"
    mode="f:FXSL">
      <xsl:param name="arg1"/>
        <character>
            <value><xsl:value-of select="$arg1"/></value>
        </character>
    </xsl:template>

    <xsl:template match="character">
     <character>
       <id><xsl:value-of select="position()"/></id>
       <xsl:copy-of select="*"/>
     </character>
    </xsl:template>
</xsl:stylesheet>

产生相同的正确结果

  <myCharacters>
   <character>
      <id>1</id>
      <value>A</value>
   </character>
   <character>
      <id>2</id>
      <value>B</value>
   </character>
   <character>
      <id>3</id>
      <value>B</value>
   </character>
   <character>
      <id>4</id>
      <value>C</value>
   </character>
   <character>
      <id>5</id>
      <value>D</value>
   </character>
</myCharacters>

二、XSLT 2.0 解决方案——比其他答案更短更简单:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="myString">
  <root>
    <myCharacters>
      <xsl:for-each select="string-to-codepoints(.)">
        <character>
            <id><xsl:value-of select="position()"/></id>
            <value><xsl:value-of select="codepoints-to-string(.)"/></value>
        </character>
      </xsl:for-each>
    </myCharacters>
  </root>
 </xsl:template>
</xsl:stylesheet>

当应用于同一个 XML 文档(上图)时,会产生所需的正确结果:

  <root>
   <myCharacters>
      <character>
         <id>1</id>
         <value>A</value>
      </character>
      <character>
         <id>2</id>
         <value>B</value>
      </character>
      <character>
         <id>3</id>
         <value>B</value>
      </character>
      <character>
         <id>4</id>
         <value>C</value>
      </character>
      <character>
         <id>5</id>
         <value>D</value>
      </character>
   </myCharacters>
</root>
于 2013-03-17T18:50:35.467 回答