0
papa francesco rossi; figlio giuseppe rossi; nipote bartolomeo rossi

我想用“;”分割这条记录 并数“;” 特点

你能给出一些关于这方面的说明吗?

我记得在 Visual Basic 中存在 SPLIT 功能....听起来很熟悉??谢谢。

<familiari>papa francesco rossi; figlio giuseppe rossi; nipote bartolomeo rossi</familiari>

在输出中我想:

; ; nipote bartolomeo rossi
这是我的 xml 代码:

<p>
   <FAMILIARI>papa francesco rossi; figlio giuseppe rossi; nipote bartolomeo rossi</FAMILIARI>
   <FAMILIARI>papa francesco rossi; figlio giuseppe rossi; nipote giuseppe contarino</FAMILIARI>
   <FAMILIARI>papa francesco rossi; figlio giuseppe rossi; nipote antonio mazzarino</FAMILIARI>
</p>

我想在输出中使用这种结构:

-papafrancesco rossi
--figlio giuseppe rossi
---nipote bartolomeo rossi
---nipote giuseppe contarino
---nipote antonio mazzarino
4

1 回答 1

1

建立在 @freefaller 对您之前的问题所做的事情的基础上。这是我想出的:

<xsl:call-template name="getFinalText">
  <xsl:with-param name="text" select="text()"/>
  <xsl:with-param name="prev_text" select="preceding-sibling::familiari[1]"/>
  <xsl:with-param name="iteration" select="1"/>
</xsl:call-template>

这是它调用的模板。

<xsl:template name="getFinalText">
  <xsl:param name="text"/>
  <xsl:param name="prev_text"/>
  <xsl:param name="iteration"/>
  <xsl:choose>
    <xsl:when test="contains($text,';')">
      <xsl:if test="not(substring-before($text,';')=substring-before($prev_text,';'))">
        <xsl:call-template name="semicolon">
          <xsl:with-param name="count" select="0"/>
          <xsl:with-param name="iteration" select="$iteration"/>
        </xsl:call-template>
        <xsl:value-of select="substring-before($text,';')"/>
        <xsl:text xml:space="preserve">&#10;</xsl:text>
      </xsl:if>
      <xsl:call-template name="getFinalText">
        <xsl:with-param name="text" select="substring-after($text,';')"/>
        <xsl:with-param name="prev_text" select="substring-after($prev_text,';')"/>
        <xsl:with-param name="iteration" select="$iteration + 1"/>
      </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>
      <xsl:call-template name="semicolon">
        <xsl:with-param name="count" select="0"/>
        <xsl:with-param name="iteration" select="$iteration"/>
      </xsl:call-template>
      <xsl:value-of select="$text"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

这是分号模板。

<xsl:template name="semicolon">
  <xsl:param name="count"/>
  <xsl:param name="iteration"/>
  <xsl:if test="$count &lt; $iteration">
    <xsl:text>;</xsl:text>
    <xsl:call-template name="semicolon">
      <xsl:with-param name="count" select="$count + 1"/>
      <xsl:with-param name="iteration" select="$iteration"/>
    </xsl:call-template>
  </xsl:if>
</xsl:template>

这在 XML Playground 上对我有用。顺便说一句,感谢@freefaller 在上一个问题中提到它。这对我来说是新的,哦,太有用了。

于 2013-11-14T20:10:14.710 回答