This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: xpath expression needed



<xsl:template match="//field1[following-sibling::field2='some']">


-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Jörg Heinicke
Sent: Thursday, September 20, 2001 2:32 PM
To: xsl-list@lists.mulberrytech.com
Subject: Re: [xsl] xpath expression needed


Matching on the root-node:

<xsl:template match="root">
    <xsl:apply-templates
select="level1/field1[following-sibling::field2[1]='some']">
</xsl:template>


Joerg


> Hi List,
>
> I have a XML as follows
>
> <level1 name = 'a'>
>      <field1>value1</field1>
>      <field2>some</field2>
>      <field3>value3</field3>
> </level1>
> <level1 name='b'>
>      <field1>value1</field1>
>      <field2>some</field2>
>      <field3>value3</field3>
> </level1>
> <level1 name='c'>
>      <field1>value1</field1>
>      <field2>someother</field2>
>      <field3>value3</field3>
> </level1>
>
> I want to get all the occurrences of "field1" whose first
following-sibling
> "field2" has a value = "some". In this case it should return me 2nodes
> (except the last one, where the value would be "someother")
>
> Hope I am clear.
>
> Thanks,
> Sanjay


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


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]