使用 ImportXML 拉取 URL 并锚定
Using ImportXML to pull URL and anchor
我的目标是抓取一个包含单词“apple”或“pear”的 link,对于每个抓取的 link 我需要抓取锚点。
目前我使用的是:
=IMPORTXML(A1,"//a/@href[contains(., 'apple')]")
不幸的是,我只能抓取包含 apple 的 links。还需要再加一个条件——“梨”和刮锚
感谢您的帮助。
试试这个:
=IMPORTXML(A1,"//a/@href[contains(., 'apple') or contains(., 'pear')]")
我的目标是抓取一个包含单词“apple”或“pear”的 link,对于每个抓取的 link 我需要抓取锚点。
目前我使用的是:
=IMPORTXML(A1,"//a/@href[contains(., 'apple')]")
不幸的是,我只能抓取包含 apple 的 links。还需要再加一个条件——“梨”和刮锚
感谢您的帮助。
试试这个:
=IMPORTXML(A1,"//a/@href[contains(., 'apple') or contains(., 'pear')]")