从Deliveroo站点抓取特定数据

时间:2019-06-09 16:05:37

标签: regex google-sheets google-sheets-formula array-formulas google-sheets-importxml

我想提取所有不可用的成分(它们仍然可见,但呈灰色:

的示例

drink在“传递”页面上。

所有成分都在

pop up menu

我想获得一个Google工作表,其中包含每天所有丢失的物品。 有谁知道如何构建它?

“传递”页面的链接为: https://deliveroo.co.uk/menu/london/soho/honi-poke?day=today&postcode=W1T1DE&time=ASAP

1 个答案:

答案 0 :(得分:0)

=ARRAYFORMULA(REGEXEXTRACT(REGEXREPLACE(QUERY(IMPORTDATA(
 "https://deliveroo.co.uk/menu/london/soho/honi-poke?day=today&postcode=W1T1DE&time=ASAP#"),
 "select Col1 where Col1 contains'item--unavailable'"),
 "\>|\<|\/|\""", ""), "0.1(.*)spanh6"))

0