如何查找字符串长度最长的节点值

时间:2017-02-20 21:50:54

标签: xslt xpath xslt-1.0

这是我的XML:

<persons>
   <person>
      <name>Jason</name>
   </person>
   <person>
      <name>John</name>
   </person>
   <person>
      <name>Mary</name>
   </person>
   <person>
      <name>Jennifer</name>
   </person>
</persons>

使用XSLT 1.0我需要找到名字最长的人。这样做的最佳方式是什么?

1 个答案:

答案 0 :(得分:4)

尝试:

XSLT 1.0

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

<xsl:template match="/persons">
    <xsl:for-each select="person">
        <xsl:sort select="string-length(name)" data-type="number" order="ascending"/>
        <xsl:if test="position()=last()">
            <xsl:copy-of select="name"/>
        </xsl:if>
    </xsl:for-each>
</xsl:template>

</xsl:stylesheet>