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

Re: Help with matching

Subject: Re: Help with matching
From: Francis Norton <francis@xxxxxxxxxxx>
Date: Mon, 18 Oct 1999 16:01:43 +0100
matching network norton transform
Leigh, you appear to be trying to match *sibling* elements with a
*nested* element pattern.

Try this (works with latest XT):


<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">

<xsl:template match="/">
	<result>
		<xsl:apply-templates />
	</result>
</xsl:template>

<xsl:template match="foo[bar[last() > 1]]">
	<polybar-foo>
		<xsl:copy>
			<xsl:apply-templates select="@*|node()"/>
		</xsl:copy>
	</polybar-foo>
</xsl:template>

<xsl:template match="foo[bar]">
	<monobar-foo>
		<xsl:copy>
			<xsl:apply-templates select="@*|node()"/>
		</xsl:copy>
	</monobar-foo>
</xsl:template>

</xsl:stylesheet>


Leigh Dodds wrote:
> 
> Hi,
> 
> I've got a document, part of whose structure are some elements
> of the form:
> 
> <foo>
>  <bar>1</bar>
>  <bar>1</bar>
> </foo>
> 
> and also :
> 
> <foo>
>  <bar>
>    <bar>3</bar><bar>4</bar>
>  </bar>
> </foo>
>


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


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.