How to select an image (or another HTML tag) with XPath in Go?
resp, _ := http.Get(url)
bytes, _ := ioutil.ReadAll(resp.Body)
s := string(bytes))
how to parse s
with XPath?
like this code:
list := libxxxx.Find(s, "//a@href")
I get HTML code with http.Get
but when I want to parse it I have a problem.