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: RE : XPath position of character in element


Use a recursive template.

Once you have the first answer, call the template from within itself
using substring-after(tag,'e') as a parameter

(reference: xsl:call-template, xsl:with-param, substring-after,
recursive templates)


Michael Earls

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


I was not accurate enough:

what in

<tag>eabcdefg</tag>, the positions of e is 1 and 6.

and 

<tag>eab<tag2>cdef<tag2>g</tag>, the positions of e in <tag> is 1 and 6?

N. Mazziotta

-----Message d'origine-----
De : owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com] De la part de Michael
Earls Envoyé : mercredi 17 avril 2002 15:38 À :
xsl-list@lists.mulberrytech.com Objet : RE: [xsl] XPath position of
character in element

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@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com] On Behalf Of Nicolas
Mazziotta
Sent: Wednesday, April 17, 2002 9:19 AM
To: xsl-list@lists.mulberrytech.com
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


 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]