Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 8th, 2008, 12:37 PM
Registered User
 
Join Date: Apr 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default text and child nodes

Hi everybody,

here's my problem...
I have a piece of XML:
...
<article>
  <emphasis>(</emphasis><ndr>1</ndr><emphasis>)</emphasis>
My TEXT
<emphasis>(</emphasis><ndr>2</ndr><emphasis>)</emphasis>
</article>
...

I should use a XSLT 1.0 to transform it and apply templates for the children emphasis-ndr-emphasis preceding "My TEXT", then write "my TEXT" and finally apply templates for the children emphasis-ndr-emphasis following "My TEXT".
The number of children emphasis-ndr-emphasis preceding or following "My TEXT" may vary.

How can I do that??

Any help would be appreciated.
Thanks a lot!

EePy.


 
Old April 8th, 2008, 12:45 PM
Friend of Wrox
 
Join Date: Nov 2007
Posts: 1,243
Thanks: 0
Thanked 245 Times in 244 Posts
Default

Code:
<xsl:template match="article">
  <xsl:apply-templates
    select="*[following-sibling::text()[. = 'My TEXT']]" mode="mode1"/>
  <xsl:apply-templates select="text()[. = 'My TEXT']"/>
  <xsl:apply-templates
    select="*[preceding-sibling::text()[. = 'My TEXT']]" mode="mode2"/>
</xsl:template>
--
  Martin Honnen
  Microsoft MVP - XML





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to get the size of the child nodes. eruditionist XSLT 2 November 7th, 2008 11:59 AM
not able to print out the child nodes eruditionist XSLT 7 October 30th, 2008 10:33 AM
Retrieveal of child nodes.... nathilson21 Classic ASP XML 0 May 7th, 2007 04:54 AM
Trying to group child nodes aalbetski XSLT 3 November 18th, 2006 01:29 PM
counting child nodes Tomi XSLT 1 September 6th, 2006 03:26 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.