我想拉出所有不可用的配料(它们仍然可见,但显示为灰色:一个具有

在Deliveroo页面上。
所有的配料都在一个

。
我想得到一个谷歌工作表与所有缺失的项目每天。有谁知道如何构建它吗?
Deliveroo页面的链接是:https://deliveroo.co.uk/menu/london/soho/honi-poke?day=today&postcode=W1T1DE&time=ASAP
发布于 2019-06-10 07:17:22
=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"))

https://stackoverflow.com/questions/56516196
复制相似问题