0

我正在尝试从网站上的表格中提取数据到谷歌电子表格中,但不知道如何提取特定信息:

这是网址: http ://www.zabihah.com/c/Birmingham+12

我想将餐厅名称、美食和地址从 Little Island Cafe 复制到 In-N-Out Grill 到谷歌电子表格的单独列中。

我尝试了 importxml 函数的各种排列,但都没有成功。任何帮助将不胜感激!

4

1 回答 1

0

Here is a formula to get you started

in cell A1

=transpose(
  ImportXML(
    "http://www.zabihah.com/c/Birmingham+12";
    "//div[@class='subtitleLink']//b"
   )
 )

along with this link to help you gain a better understanding of Xpath, html attributes and tags.

于 2013-01-01T02:22:07.890 回答