|
Posted by mapper on June 25, 2008, 1:59 am
Please log in for more thread options
> I'm trying to run the following xpath query:
>
> /html/body/table[2]/tbody/tr[1]/td[2]/table[3]/tbody/tr/td/div/
> table[1]/tbody/tr[position()>4]
>
> ...nothing happens.
>
> I'm using xpather firefox extension to simulate it, but PHP fails to
> run it.
>
> Is there an expression size limit?
it turned out I had to skip two "tbody"s, now it works like this:
/html/body/table[2]/tr[1]/td[2]/table[3]/tbody/tr/td/div//table[1]//
tr[position()>4]
thanks anyways
|