|
Subject: Re: [xsl] XPath location problem From: Per Åberg <aberg.per@xxxxxxxx> Date: Wed, 30 Aug 2006 17:46:01 +0200 |
----- Original Message ----- From: "Florent Georges" <darkman_spam@xxxxxxxx> To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx> Sent: Wednesday, August 30, 2006 1:57 AM Subject: Re: [xsl] XPath location problem
> cat per.xml
<animal>
<species>
<name language="English">Wolf</name>
<name language="Spanish">Lobo</name>
<name language="English">Warg</name>
<name language="Latin">Canis Lupus</name>
<name language="French">Loup</name>
</species>
</animal> > cat per.xsl
<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0"> <xsl:template match="/">
<xsl:apply-templates select="animal/species"/>
</xsl:template> <xsl:template match="species">
<xsl:variable name="second"
select="name[@language eq 'English'][2]"/>
<new>
<xsl:copy-of select="
$second, $second/following-sibling::name"/>
</new>
</xsl:template> > gexslt per.xsl per.xml
<?xml version="1.0" encoding="UTF-8"?>
<new>
<name language="English">Warg</name>
<name language="Latin">Canis Lupus</name>
<name language="French">Loup</name>
</new>
___________________________________________________________________________ Dicouvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Riponses pour partager vos connaissances, vos opinions et vos expiriences. http://fr.answers.yahoo.com
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] XPath location problem, Florent Georges | Thread | RE: [xsl] XPath location problem, Michael Kay |
| Re: [xsl] Reordering a complex hier, David Carlisle | Date | Re: [xsl] Reordering a complex hier, Mukul Gandhi |
| Month |