|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: xslt question
Hi,
>I am trying to get the 5th table of the 1st table of the 3rd table ONLY from
>an HTML document. I've been trying various combinations for a couple of days
>now and it is frustrating?
[snip]
><xsl:template match="table[3]/table[1]/table[5]">
><HR>
> <xsl:apply-templates />
></HR>
></xsl:template>
When you have a step in an XPath and you don't specify an axis name, then
the step uses the 'child' axis. This means that your XPath translates as:
a table that is the fifth table that is a direct child of
a table that is the first table that is a direct child of
a table that is the third table of its parent
Since your input is HTML, I guess that the tables aren't nested as direct
children of each other, and that instead they are within rows and cells.
You probably want something like:
table[3]/tr/td/table[1]/tr/td/table[5]
I hope that helps,
Jeni
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








