I am struggling with the syntax required to grab some hrefs in a td. The table, tr and td elements dont have any class's or id's.
If I wanted to grab the anchor in this example, what would I need?
< tr > < td > < a >...
Thanks
|
|
I am struggling with the syntax required to grab some hrefs in a td. The table, tr and td elements dont have any class's or id's. If I wanted to grab the anchor in this example, what would I need? < tr > < td > < a >... Thanks
|
|||
|
|
|
|
Something like this?
That should find the first "a" inside each "td" in the html you provide. You can tweak |
||
|
|
|
|
As per the docs, you first make a parse tree:
and then you search in it, for example for
|
||
|
|