RE: [xsl] XPath position of character in element

Subject: RE: [xsl] XPath position of character in element
From: "Michael Earls" <michael@xxxxxxxxxx>
Date: Wed, 17 Apr 2002 09:37:46 -0400
For 1 based answer:

The position of 'e' is <xsl:value-of
select="string-length(substring-before(tag,'e')) + 1"/>

For 0 based answer:

The position of 'e' is <xsl:value-of
select="string-length(substring-before(tag,'e'))"/>

Michael Earls

-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Nicolas
Mazziotta
Sent: Wednesday, April 17, 2002 9:19 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] XPath position of character in element


Hello,

does anybody know how to get the value of the position of a character in
an element?

e. g. : in <tag>abcdefg</tag>, the position of e is 5.

Thank you.

N. Mazziotta


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


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


Current Thread