[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Fwd: text nodes

Subject: Re: Fwd: text nodes
From: "Sam Byland" <shbyland@xxxxxxxxxxx>
Date: Wed, 17 Sep 2008 09:52:29 -0400
Re:  Fwd: text nodes
the output is:

"some text 1 some text 2 some text 3"

Lucas,


I used:

<some_element>
<a>hello</a> some text 1<br/>
some text 2
some text 3
<a>hello 2</a>
</some_element>

for the input. Assuming you only want to output the text up to the next <a> element, then something like this (XSLT1.0) might get you in the right direction:

<xsl:template match="a">

<xsl:variable name="next_a" select="generate-id(following-sibling::a[1])"/>

<xsl:for-each select="following-sibling::text()[ generate-id( following-sibling::a[1] ) = $next_a ]">
<xsl:value-of select="."/>
</xsl:for-each>


</xsl:template>

<xsl:template match="some_element">
   <xsl:apply-templates select="a"/>
</xsl:template>

I'm not totally sure what you meant by ' stop on the first occurrence on the "[ ]" '

...sam

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.