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

Could not select the text() of both parent & child nod

Subject: Could not select the text() of both parent & child nodes simultaneously
From: Jack Bush <netbeansfan@xxxxxxxxxxxx>
Date: Tue, 15 Jun 2010 07:04:18 -0700 (PDT)
 Could not select the text() of both parent & child nod
Hi All,
 
I am stucked with an XSLT 1.0 XPath issue when trying to reference
the content of either a parent/child nodes at the same time without much luck.
Let's have a look at the XML document I am trying to parse:
 <p>
<
<
<strong>World Cup Team:</strong>br clear="none" />a shape="rect"
>Brasil</a>(30 goals)<
<br clear="none" />a shape="rect" >Argentina</a>(25
goals)<
<br clear="none" />a shape="rect" >Germany</a>(22 goals)<
<br
clear="none" />a shape="rect" >USA</a>(15 goals)<
.......
</p>br clear="none"
/> 
The desire transformation outcome would to produce the following XML
document:
<team>Brasil (30 goals)<team>
<team>Argentina (25 goals)<team>
<team>Germany (22 goals)<team>
<team>USA (15 goals)<team>
......
 
The
following stylesheets achieve either of the text() but not both:
 
<-- Only
get the teams but not goals ----->
<xsl:template match="ns:p[ns:strong='World
Cup Team:']"> 
<xsl:for-each select="ns:a/text()[normalize-space() != '']">
<team><xsl:value-of select="normalize-space()"/></team>
</xsl:for-each>
</xsl:template>
 
< -- Get all teams and goals for all nodes on the same line
continuously. Similar to printf statement -->
<xsl:template
match="ns:p[ns:strong='World Cup Team:']"> 
<xsl:for-each
select="ns:a/text()[normalize-space() != '']">
<team><xsl:value-of
select="../../normalize-space()"/></team>
</xsl:for-each> 
</xsl:template>
 
<
--- Only get the goals but not teams --- >
<xsl:template
match="ns:p[ns:strong='World Cup Team:']"> 
<xsl:for-each
select="text()[normalize-space() != '']"> 
<team><xsl:value-of
select="normalize-space()"/></team> 
</xsl:for-each> 
</xsl:template> 
 
I am
using JDOM and Saxon 9.1 to carry out the transformation on Windows XP.
 
Any
assistance would be much appreciated.
Thanks in advance,
Jack

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.