This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Finding the first non-empty node


There may be a more efficient way to do this, but I think this will work.

<xsl:template select="root">
  <xsl:for-each select="tag">
    <xsl:if test="string-length(.) > 0">
      <h1>I have data</h1>
    </xsl:if>
  </xsl:for-each>
</xsl:template>



On Thu, 15 Aug 2002, Melton, Joseph (LNG) wrote:

> Hello,
>
> Is there a test for finding the position of the first tag that contains
> data? The example would be as follows:
>
> <root>
>  <tag1/>
>  <tag1/>
>  <tag1/>
>  <tag1>This one has data</tag>
>  <tag1>This one has data</tag>
>  <tag1>This one has data</tag>
> </root>
>
> So I would like position 4 returned. Thank you
>
> Joe
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]