Scraping hreflang

Hey guys, I'm trying to scrape hreflangs from my site, and was wondering the best way to do this. I'm trying =htmlfirst() right now, but it doesn't seem to be working. I have 16 lang tags on each url.

Thanks!

Perhaps like this? The dump function supports more than one lang per URL. Although more than one lang might be written with attributes and not separate tags?

Continuing the discussion from Scraping hreflang:

This will get all exisiting hreflang values into column:

=Dump(XPathOnUrl("http://www.example.com/";"//link";"hreflang";;"text"))

Thank you! Your replies were helpful.