【问题标题】:Tokenizing and sorting with XSLT 1.0使用 XSLT 1.0 进行标记和排序
【发布时间】:2009-06-19 16:53:57
【问题描述】:

我有一个分隔字符串(在下面的示例中由空格分隔),我需要对其进行标记、排序,然后重新连接在一起,我需要使用 XSLT 1.0 完成所有这些操作。我该怎么做?我知道我需要以某种方式使用xsl:sort,但到目前为止我所尝试的一切都给了我某种错误。

例如,如果我运行这篇帖子底部的代码,我会得到:

草莓蓝莓橙覆盆子 酸橙柠檬

如果我想得到这个,我会怎么做?:

蓝莓柠檬酸橙覆盆子 草莓

请注意,我使用的是 XSLT 1.0。

这里是代码,基于Jeni Tennison的代码。

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="tokenize1.xsl"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <xsl:call-template name="tokenize">
    <xsl:with-param name="string" select="'strawberry blueberry orange raspberry lime lemon'" />
  </xsl:call-template>
</xsl:template>

<xsl:template name="tokenize">
  <xsl:param name="string" />
  <xsl:param name="delimiter" select="' '" />
  <xsl:choose>
    <xsl:when test="$delimiter and contains($string, $delimiter)">
      <token>
        <xsl:value-of select="substring-before($string, $delimiter)" />
      </token>
      <xsl:text> </xsl:text>
      <xsl:call-template name="tokenize">
        <xsl:with-param name="string" 
                        select="substring-after($string, $delimiter)" />
        <xsl:with-param name="delimiter" select="$delimiter" />
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <token><xsl:value-of select="$string" /></token>
      <xsl:text> </xsl:text>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

</xsl:stylesheet>

【问题讨论】:

    标签: xslt sorting tokenize xslt-1.0


    【解决方案1】:

    这是一个低效的纯版本 1 解决方案:

    <!-- Sort the tokens -->
    <xsl:template name="sortTokens">
      <xsl:param name="tokens" select="''"/>      <!-- The list of tokens -->
      <xsl:param name="separator" select="' '"/>  <!-- What character separates the tokens? -->
      <xsl:param name="pivot" select="''"/>       <!-- A pivot word used to divide the list -->
      <xsl:param name="lessThan" select="''"/>    <!-- Accumulator for tokens less than the pivot (with leading separator) -->
      <xsl:param name="moreThan" select="''"/>    <!-- Accumulator for tokens more than the pivot (with leading separator) -->
      <xsl:param name="leadWith" select="''"/>    <!-- If set, output this before sorting -->
      <xsl:param name="trailWith" select="''"/>   <!-- If set, output this after sorting -->
    
      <!-- The first token -->
      <xsl:variable name="firstToken" select="substring-before(concat($tokens,$separator),$separator)"/>
    
      <!-- Is the first token more or less than the pivot? -->
      <xsl:variable name="pivotVsFirstToken">
        <xsl:call-template name="compareStrings">
          <xsl:with-param name="a" select="$pivot"/>
          <xsl:with-param name="b" select="$firstToken"/>
        </xsl:call-template>
      </xsl:variable>
    
      <xsl:choose>
        <!-- No input, no output -->
        <xsl:when test="$tokens = '' and $pivot = ''"></xsl:when>
    
        <!-- At the outset, the first token becomes the pivot -->
        <xsl:when test="$pivot = ''">
          <xsl:value-of select="$leadWith"/>
          <xsl:call-template name="sortTokens">
            <xsl:with-param name="separator" select="$separator"/>
            <xsl:with-param name="tokens" select="substring-after($tokens,$separator)"/>
            <xsl:with-param name="pivot" select="$firstToken"/>
          </xsl:call-template>
          <xsl:value-of select="$trailWith"/>
        </xsl:when>
    
        <!-- When all tokens are in a bucket, output the pivot between sorted buckets -->
        <xsl:when test="$tokens = ''">
          <xsl:call-template name="sortTokens">
            <xsl:with-param name="separator" select="$separator"/>
            <xsl:with-param name="tokens" select="substring-after($lessThan,$separator)"/>
            <xsl:with-param name="trailWith" select="$separator"/>
          </xsl:call-template>
          <xsl:value-of select="$pivot"/>
          <xsl:call-template name="sortTokens">
            <xsl:with-param name="separator" select="$separator"/>
            <xsl:with-param name="tokens" select="substring-after($moreThan,$separator)"/>
            <xsl:with-param name="leadWith" select="$separator"/>
          </xsl:call-template>
        </xsl:when>
    
        <!-- If the first token is less than the pivot, put it in the lessThan bucket -->
        <xsl:when test="number($pivotVsFirstToken) = 1">
          <xsl:call-template name="sortTokens">
            <xsl:with-param name="separator" select="$separator"/>
            <xsl:with-param name="tokens" select="substring-after($tokens,$separator)"/>
            <xsl:with-param name="pivot" select="$pivot"/>
            <xsl:with-param name="lessThan" select="concat($separator,$firstToken,$lessThan)"/>
            <xsl:with-param name="moreThan" select="$moreThan"/>
          </xsl:call-template>
        </xsl:when>
    
        <!-- If the first token is more than the pivot, put it in the moreThan bucket -->
        <xsl:otherwise>
          <xsl:call-template name="sortTokens">
            <xsl:with-param name="separator" select="$separator"/>
            <xsl:with-param name="tokens" select="substring-after($tokens,$separator)"/>
            <xsl:with-param name="pivot" select="$pivot"/>
            <xsl:with-param name="lessThan" select="$lessThan"/>
            <xsl:with-param name="moreThan" select="concat($separator,$firstToken,$moreThan)"/>
          </xsl:call-template>
        </xsl:otherwise>
      </xsl:choose>
    </xsl:template>
    
    <!-- Quote an apostrophe -->
    <xsl:variable name="apos" select="&quot;'&quot;"/>
    
    <!-- The comparison order of the characters -->
    <xsl:variable name="characterOrder" select="concat(' !&quot;#$%&amp;',$apos,'()*+,-./0123456789:;&lt;=&gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~')"/>
    
    <!-- Return -1 if string a is less, 1 if string b is less, or 0 if they are equal -->
    <xsl:template name="compareStrings">
      <xsl:param name="a" select="''"/>
      <xsl:param name="b" select="''"/>
      <xsl:choose>
        <xsl:when test="$a = '' and $b = ''">0</xsl:when>
        <xsl:when test="$a = ''">-1</xsl:when>
        <xsl:when test="$b = ''">1</xsl:when>
        <xsl:when test="substring($a,1,1) = substring($b,1,1)">
          <xsl:call-template name="compareStrings">
            <xsl:with-param name="a" select="substring($a,2)"/>
            <xsl:with-param name="b" select="substring($b,2)"/>
          </xsl:call-template>
        </xsl:when>
        <xsl:when test="contains(substring-after($characterOrder,substring($a,1,1)),substring($b,1,1))">-1</xsl:when>
        <xsl:otherwise>1</xsl:otherwise>
      </xsl:choose>
    </xsl:template>
    

    【讨论】:

      【解决方案2】:

      如果你的处理器支持 EXSLT,你最好使用str:tokenize

      对于排序,为什么不使用 xsl:sort?

      <xsl:template match="/">
        <xsl:variable name="tokens">
          <xsl:call-template name="tokenize">
            <xsl:with-param name="string" select="'strawberry blueberry orange raspberry lime lemon'" />
          </xsl:call-template>
        </xsl:variable>
      
        <xsl:for-each select="$tokens">
          <xsl:sort select="text()" />
          <xsl:value-of select="." />
          <xsl:if test="not(last())">
            <xsl:text> </xsl:text>
          </xsl:if>
        </xsl:for-each>
      </xsl:template>
      

      请注意,您可能需要 exsl:node-set 执行迭代。

      【讨论】:

      • 假设我不能使用 str:tokenize 出于任何原因。无论如何,问题在于排序,而不是标记化。
      • 因为 xsl:sort 适用于节点集,但他的标记只作为结果树片段存在。
      • 显然你应该使用 exsl:node-set 或者你的 XSLT 引擎提供的任何东西。 RTF 是“90 年代计算中最愚蠢的东西”。
      • 我同意,我想不出没有 EXSLT(或其他将 RTF 转换为节点集的方法)的方法。
      • 我确实想使用 xsl:sort。此外,如果可以在不使用 RTF 和使用节点集的情况下编写代码,那很好。关键是我有一个逗号分隔的字符串,我需要对其进行标记、排序,然后重新连接在一起,我需要使用 XSLT 1.0 来完成所有这些工作。
      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-09-11
      • 2020-05-06
      • 2012-07-16
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多