我正在使用 Google 表格作为网络抓取工具。
我一直在使用这个 IMPORTXML
=importxml(A1, "//div[@class='review-content']//text()")
这就是结果
Row1: {"publishedDate":"2019-01-05T22:19:28Z","updatedDate":"null","reportedDate":"null}
Row2: {"publishedDate":"2018-12-10T22:19:28Z","updatedDate":"null","reportedDate":"null}
Row3: {"publishedDate":"2018-12-09T22:19:28Z","updatedDate":"null","reportedDate":"null}
但我无法弄清楚如何仅获取“publishedDate”值。例子:
Row1: 2019-01-05T22:19:28Z
Row2: 2018-12-10T22:19:28Z
Row3: 2018-12-09T22:19:28Z
关于我可能遗漏的任何想法