xpath in = importXML()用于提取元描述

时间:2011-05-19 00:16:39

标签: xpath google-sheets seo

我正在尝试使用Xpath通过Google表格从网页中提取元描述。

我有这个工作来提取标题:=importXml(www.example.com; "//title")

以下是我学习的两个来源:

http://seogadget.co.uk/playing-around-with-importxml-in-google-spreadsheets/
http://docs.google.com/support/bin/answer.py?hl=en&answer=75507

我在这个网站上看过很多其他帖子,这似乎与我想要的相似:

"/html/head/meta[@name='description']/@content"
"/*/head/meta[@name='description']/@content"
"//head/meta[@name=\"description\"]/@content"

这些都不适用于Google表格,它指定在Xpath中编写它。唯一的区别是,在Google表格中你要使用'代替'(因此为什么描述就是这样)。我老实说它以219种不同的方式尝试过它......没有运气。

有什么想法吗?提前致谢!

1 个答案:

答案 0 :(得分:3)

//meta[@name='description']/@content

因此,您在Google工作表中的完整网址调用将是

=importxml(A1,"//meta[@name='description']/@content")

我使用importXML构建了一些很棒的搜索引擎优化工具 - 这只是它交配的开始! :)