xml – XSL – 你如何利用第一个字母

前端之家收集整理的这篇文章主要介绍了xml – XSL – 你如何利用第一个字母前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下xml.
<Name>
  <First>john</First>
  <Last>smith</Last>
</Name>

我想把首字母大写,并把它放在下面.

<FullName>John Smith</FullName>

先谢谢你.

I. XSLT 2.0解决方案:
<xsl:stylesheet version="2.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="/*">
  <FullName><xsl:apply-templates/></FullName>
 </xsl:template>

 <xsl:template match="First|Last">
  <xsl:sequence select=
  "concat(upper-case(substring(.,1,1)),substring(.,2),' '[not(last())]
         )
  "/>
 </xsl:template>
</xsl:stylesheet>

当转换应用于提供的XML文档时:

<Name>
    <First>john</First>
    <Last>smith</Last>
</Name>

想要的,正确的结果是产生的:

<FullName>John Smith</FullName>

II. XSLT 1.0解决方案:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:variable name="vLower" select=
 "'abcdefghijklmnopqrstuvwxyz'"/>

 <xsl:variable name="vUpper" select=
 "'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>

 <xsl:template match="/*">
  <FullName><xsl:apply-templates/></FullName>
 </xsl:template>

 <xsl:template match="First|Last">
  <xsl:value-of select=
  "concat(translate(substring(.,1),$vLower,$vUpper),substring(' ',1 div not(position()=last()))
         )
  "/>
 </xsl:template>
</xsl:stylesheet>
原文链接:https://www.f2er.com/xml/292223.html

猜你在找的XML相关文章