通过功能

时间:2016-06-04 21:32:44

标签: xml-parsing google-sheets

我有一个Google电子表格,其中每天都会自动提取并添加Instagram关注者的数量。不幸的是,Instagram更改了他们的代码,我的功能不再起作用了。你能帮忙吗?

我的工作表以时间戳和每天的粉丝数量分开。

=mid(
  regexextract(
    query(
      IMPORTXML(C1,"//*[@class]"),
      "select Col3"
    ),
    "followed_by.{4}[a-z]{5}?..[0-9]{1,}"),
   23,
   20
 )

1 个答案:

答案 0 :(得分:0)

您可以使用importdata和regexreplace实际实现它:

=REGEXREPLACE(CONCATENATE(IMPORTDATA(B1)),"(^.*followed_by: {""count"": )(\d+)(}.*)","$2")

enter image description here