xslt replace \n with
only in one node?

后端 未结 2 579
礼貌的吻别
礼貌的吻别 2021-01-05 05:41

Hey I have a node which contains a message such as

string1
string 2
sting3

but however when it r

相关标签:
2条回答
  • 2021-01-05 06:12

    Call this template on the string you want to process:

    <xsl:template name="break">
      <xsl:param name="text" select="string(.)"/>
      <xsl:choose>
        <xsl:when test="contains($text, '&#xa;')">
          <xsl:value-of select="substring-before($text, '&#xa;')"/>
          <br/>
          <xsl:call-template name="break">
            <xsl:with-param 
              name="text" 
              select="substring-after($text, '&#xa;')"
            />
          </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
          <xsl:value-of select="$text"/>
        </xsl:otherwise>
      </xsl:choose>
    </xsl:template>
    

    Like this (it will work on the current node):

    <xsl:template match="msg">
      <xsl:call-template name="break" />
    </xsl:template>
    

    or like this, explicitly passing a parameter:

    <xsl:template match="someElement">
      <xsl:call-template name="break">
        <xsl:with-param name="text" select="msg" />
      </xsl:call-template>
    </xsl:template>
    

    I think you are working with an XSLT 1.0 processor, whereas replace() is a function that has been introduced with XSLT/XPath 2.0.

    0 讨论(0)
  • 2021-01-05 06:18

    You can also achieve this by simple HTML tag,
    Try this <pre> tag before your msg and close it after msg.

    <pre>
    Jayakumar Kulkarni (Consultant) :
    Remark
    
    Jayakumar Kulkarni :
    Rematr 01
    
    Jayakumar Kulkarni :
    comment</pre>
    
    0 讨论(0)
提交回复
热议问题