XSLT 如何在字符串值中仅包含数字



如何在字符串值中只获取数字?我尝试了这个功能,但它不起作用。什么是可能的问题?

原始文件:

    <?xml version="1.0" encoding="utf-8"?>
    <ns0:Request xmlns:ns0="http://ABS.NM.B">
        <TRANSACTION>
          <LREF>SUBIS     70055593</LREF>
        </TRANSACTION>
    </ns0:Request>

XSLT:

    <xsl:template match="TRANSACTION" >
     <Transaction reference="{LREF}" >
        <xsl:attribute name="reference">
         <xsl:value-of select="replace($input, '.*[^.d](.*)$', '$1')"/>
        </xsl:attribute>
    </Transaction>
    </xsl:template>

结果:

     <Transaction reference="70055593">
     </Transaction>

您的代码几乎正确,但变量只需要按下面给出的方式进行设置。

<xsl:template match="TRANSACTION" >
 <xsl:variable name="input" select="LREF"/>
  <Transaction reference="{LREF}" >
    <xsl:attribute name="reference">
     <xsl:value-of select="replace($input, '.*[^.d](.*)$', '$1')"/>
    </xsl:attribute>
 </Transaction>
</xsl:template>

相关内容

  • 没有找到相关文章

最新更新