How can I scrape the h2 header text of a given url?
Output requirements:
Total number of h2 tags on the page
The header text itself, each header text on a new row
Many thanks
How can I scrape the h2 header text of a given url?
Output requirements:
Total number of h2 tags on the page
The header text itself, each header text on a new row
Many thanks
Try:
=HtmlH2(url") for single H2 tags.
=Dump(XPathOnUrl(url;"//h2")) for all h2 tags
Fantastic, works fine.
Wow, that was quick
Many thanks