Subject: RE: xpath for element with a specific attribute...
From: Stuart Brown <sbrown@xxxxxxxxxxxxx>
Date: Fri, 2 Aug 2002 10:48:54 +0100
|
Hi Aruniima,
You need to use the attribute:: axis, which can be abbreviated to @. If you
want to get the Row element, and just filter by total_size, use
"//Row[@total_size]" (you can further extend this to, for instance,
"//Row[@total_size='5']"); if you want to select the attribute itself use
"//Row/@total_size". Note that I've used "//" at the start which will search
the whole tree and select all matching nodes: you probably want to avoid
this and use a more exact path, but as I haven't seen your XML I can't offer
this.
Cheers,
Stuart
> -----Original Message-----
> From: aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx
> [mailto:aruniima.chakrabarti@xxxxxxxxxxxxxxxxxx]
> Sent: 02 August 2002 10:40
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: xpath for element with a specific attribute...
>
>
> Hi All,
> Can some help me to write the Xpath for searching for
> element "Row"
> with a attribute called "total_size"... I tried using name()
> but I am not
> getting the desired result... it is saying "node test
> expected"... Please
> help...
>
> Regards,
> aruniima
>
> --------------------------------------------------------------
> --------------
>
> This message contains privileged and confidential information and is
> intended only for the individual named. If you are not the intended
> recepient you should not disseminate, distribute, store,
> print, copy or
> deliver this message. Please notify the sender immediately by
> e-mail if you
> have received this e-mail by mistake and immediately delete
> this e-mail from
> your system.
>
>
> E-mail transmission cannot be guaranteed to be secure or error-free as
> information could be intercepted, corrupted, lost, destroyed,
> arrive late or
> incomplete, or contain viruses. The sender therefore does not accept
> liability for any errors or omissions in the contents of this
> message which
> arise as a result of e-mail transmission. If verification is required
> please request a hard-copy version.
>
>
> --------------------------------------------------------------
> ------------
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|