使用XSLT基于长度条件在XML标记值中删除空格

时间:2012-03-08 11:55:14

标签: xslt trim

我有一个非常简单的查询,但无法找到解决它的最简单/优雅的方法。如果我的输入XML有一个字符串内容为“YY nnn”的标签,其中YY是字母数字2个字符,后跟一个空格,最多4个数字。在我的输出XML中,如果数字是4个字符,我需要剥离空间 - 即。 “YY nnnn”并保留“YY nnn”的空间。我尝试过字符串长度检查然后剥离空间,但我确信必须有一个更简单的方法。

有什么想法吗?

我在linux上使用xlstproc进行转换。

谢谢!

1 个答案:

答案 0 :(得分:1)

示例输入XML:

<?xml version="1.0" encoding="utf-8"?>
<root>
  <MyNode>AZ 1234</MyNode>
  <MyNode>A3 123</MyNode>
  <MyNode>7Z 12345</MyNode>
  <MyNode>15 23</MyNode>
</root>

XSLT代码:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  <xsl:output method="xml" indent="yes"/>

  <xsl:template match="@* | node()">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="MyNode">
    <xsl:copy>
      <xsl:choose>
        <xsl:when test="string-length(substring-after(.,' '))='4'">
          <xsl:value-of select="concat(substring-before(.,' '), substring-after(.,' '))"/>
        </xsl:when>
        <xsl:when test="string-length(substring-after(.,' '))='3'">
          <xsl:value-of select="."/>
        </xsl:when>
        <xsl:otherwise>
          <xsl:value-of select="."/>
        </xsl:otherwise>
      </xsl:choose>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>

输出:

<?xml version="1.0" encoding="utf-8"?>
<root>
  <MyNode>AZ1234</MyNode>
  <MyNode>A3 123</MyNode>
  <MyNode>7Z 12345</MyNode>
  <MyNode>15 23</MyNode>
</root>