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]

RE: Accessing text from node


> > >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@informatik.hu-berlin.de             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


 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]