Google表格IMPORTXML显示错误?

时间:2018-07-04 09:30:41

标签: google-sheets spreadsheet

这就是我现在所使用的。

为什么显示错误?

=IMPORTXML("http://www.whatsonglasgow.co.uk/events/this-weekend/", "//*[@id="page-content"]/div[1]/div[5]/div/h4/a")

1 个答案:

答案 0 :(得分:1)

因为您在(")中两次使用双引号xpath_query引起解析错误。以下应该起作用

=IMPORTXML("http://www.whatsonglasgow.co.uk/events/this-weekend/", "//*[@id='page-content']/div[1]/div[5]/div/h4/a")

输出:Good Move Glasgow Health Walks

  

请注意,原始[@id="page-content"]与   双引号("),以及新的[@id='page-content']和单引号(')

通常在字符串文字封装准则下对此进行解释。没有通用规则,它取决于编码语言。可以在here中找到类似C语言的合理解释。