RE: [xsl] Accessing text from node

Subject: RE: [xsl] Accessing text from node
From: Oliver Becker <obecker@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 29 Jun 2001 12:04:37 +0200 (MET DST)
> > >From this node to access text "News" if I use <xsl:value-of
> > select="text()[count(action)+1]"/> This does not give me text
> > "News". If I
> > use digit 3 like this:
> > 	<xsl:value-of select="text()[3]"/> This gives me text
> > "News".
> 
> I can't see any explanation for this: if your context node is the <choice>
> element above, then count(action)+1 should give 3. 

Yes, but in text()[count(action)+1] the context node for the predicate
is the text node, which has obviously no children.
I think it should be
  text()[count(current()/action)+1]

Another suggestion:
  action[last()]/following-sibling::text()
ie the text sibling(s) after the last action element.

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@xxxxxxxxxxxxxxxxxxxxxxx             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


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


Current Thread