xml – 如何在XSLT中修剪空格,而不用单个空格替换重复的空格?

前端之家收集整理的这篇文章主要介绍了xml – 如何在XSLT中修剪空格,而不用单个空格替换重复的空格?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
函数normalize-space通过单个空格替换空格的序列,并修剪提供的字符串.我如何只修剪字符串而不更换空格?有专有的解决方案,如orcl:left-trim,但我正在寻找一个非专有的解决方案.

例:

  1. <xsl:value-of select="trim(/Car/Description)"/>

应该转

  1. <car>
  2. <description> To get more information look at: www.example.com </description>
  3. </car>

  1. "To get more information look at: www.example.com"
只使用xslt 1.0模板的解决方案:
  1. <xsl:variable name="whitespace" select="'&#09;&#10;&#13; '" />
  2.  
  3. <!-- Strips trailing whitespace characters from 'string' -->
  4. <xsl:template name="string-rtrim">
  5. <xsl:param name="string" />
  6. <xsl:param name="trim" select="$whitespace" />
  7.  
  8. <xsl:variable name="length" select="string-length($string)" />
  9.  
  10. <xsl:if test="$length &gt; 0">
  11. <xsl:choose>
  12. <xsl:when test="contains($trim,substring($string,$length,1))">
  13. <xsl:call-template name="string-rtrim">
  14. <xsl:with-param name="string" select="substring($string,1,$length - 1)" />
  15. <xsl:with-param name="trim" select="$trim" />
  16. </xsl:call-template>
  17. </xsl:when>
  18. <xsl:otherwise>
  19. <xsl:value-of select="$string" />
  20. </xsl:otherwise>
  21. </xsl:choose>
  22. </xsl:if>
  23. </xsl:template>
  24.  
  25. <!-- Strips leading whitespace characters from 'string' -->
  26. <xsl:template name="string-ltrim">
  27. <xsl:param name="string" />
  28. <xsl:param name="trim" select="$whitespace" />
  29.  
  30. <xsl:if test="string-length($string) &gt; 0">
  31. <xsl:choose>
  32. <xsl:when test="contains($trim,1))">
  33. <xsl:call-template name="string-ltrim">
  34. <xsl:with-param name="string" select="substring($string,2)" />
  35. <xsl:with-param name="trim" select="$trim" />
  36. </xsl:call-template>
  37. </xsl:when>
  38. <xsl:otherwise>
  39. <xsl:value-of select="$string" />
  40. </xsl:otherwise>
  41. </xsl:choose>
  42. </xsl:if>
  43. </xsl:template>
  44.  
  45. <!-- Strips leading and trailing whitespace characters from 'string' -->
  46. <xsl:template name="string-trim">
  47. <xsl:param name="string" />
  48. <xsl:param name="trim" select="$whitespace" />
  49. <xsl:call-template name="string-rtrim">
  50. <xsl:with-param name="string">
  51. <xsl:call-template name="string-ltrim">
  52. <xsl:with-param name="string" select="$string" />
  53. <xsl:with-param name="trim" select="$trim" />
  54. </xsl:call-template>
  55. </xsl:with-param>
  56. <xsl:with-param name="trim" select="$trim" />
  57. </xsl:call-template>
  58. </xsl:template>

测试代码

  1. <ltrim>
  2. <xsl:call-template name="string-ltrim">
  3. <xsl:with-param name="string" select="' &#10; test '" />
  4. </xsl:call-template>
  5. </ltrim>
  6. <rtrim>
  7. <xsl:call-template name="string-rtrim">
  8. <xsl:with-param name="string" select="' &#10; test &#10; '" />
  9. </xsl:call-template>
  10. </rtrim>
  11. <trim>
  12. <xsl:call-template name="string-trim">
  13. <xsl:with-param name="string" select="' &#10; test &#10; '" />
  14. </xsl:call-template>
  15. </trim>

输出

  1. <test>
  2. <ltrim>test </ltrim>
  3. <rtrim>
  4. test</rtrim>
  5. <trim>test</trim>
  6. </test>

猜你在找的XML相关文章