1

こんにちは、これは "," やその他の区切り文字では機能しますが、PIPE(|) 記号では機能しません。FORX0003: The regular expression in tokenize() must not be one that match a zero-length string

<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template> 
<xsl:template match="text/text()" name="tokenize">
    <xsl:param name="separator" select="'|'"/>
    <xsl:for-each select="tokenize(.,$separator)">
        <item>
            <xsl:value-of select="normalize-space(.)"/>
        </item>
    </xsl:for-each>
</xsl:template>

4

1 に答える 1

8

'|' からトークン化する場合は、<xsl:param name="separator" select="'|'"/>to に置き換えるだけです。<xsl:param name="separator" select="'\|'"/>キャラクター。私のサンプル XSLT を見てください:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:param name="text">Navin | Rawat</xsl:param>
<xsl:param name="separator" select="'\|'"/>

  <xsl:template match="/">
  <xsl:for-each select="tokenize($text,$separator)">
    <item>
      <xsl:value-of select="normalize-space(.)"/>
    </item>
  </xsl:for-each>
  </xsl:template>

</xsl:stylesheet>

出力:

<item>Navin</item><item>Rawat</item>
于 2013-05-21T04:29:07.207 に答える