R,使用 XML 和 xpathSApply 时的右 xpath 表达式
Posted
技术标签:
【中文标题】R,使用 XML 和 xpathSApply 时的右 xpath 表达式【英文标题】:R, Right xpath expression when using XML and xpathSApply 【发布时间】:2013-03-26 04:43:24 【问题描述】:假设我使用以下表达式解析了一个网站
library(XML)
url.df_1 = htmlTreeParse("http://www.appannie.com/app/android/com.king.candycrushsaga/", useInternalNodes = T)
如果我运行下面的代码,
xpathSApply(url.df_1, "//div[@class='app_content_section']/h3", function(x) c(xmlValue(x), xmlAttrs(x)[["href"]]))
我会在下面 -
[1] "Description" "What's new"
[3] "Permissions" "More Apps by King.com All Apps »"
[5] "Customers Also Viewed" "Customers Also Installed"
现在,我感兴趣的只是“同时安装了客户”部分。但是当我运行下面的代码时,
xpathSApply(url.df_1, "//div[@class='app_content_section']/ul/li/a", function(x) c(xmlValue(x), xmlAttrs(x)[["href"]]))
它会显示“King.com 所有应用程序的更多应用程序”、“还查看的客户”和“还安装的客户”中包含的所有应用程序。
所以我尝试了,
xpathSApply(url.df_1, "//div[h3='Customers Also Installed']”, function(x) c(xmlValue(x), xmlAttrs(x)[["href"]]))
但这没有用。所以我尝试了
xpathSApply(url.df_1, "//div[contains(.,'Customers Also Installed')]",xmlValue)
但这也不起作用。 (输出应该如下所示-)
[,1]
[1,] "Christmas Candy Free\n Daniel Development\n "
[2,] "/app/android/xmas.candy.free/"
[,2]
[1,] "Jewel Candy Maker\n Nutty Apps\n "
[2,] "/app/android/com.candy.maker.jewel.nuttyapps/"
[,3]
[1,] "Pogz 2\n Terry Paton\n "
[2,] "/app/android/com.terrypaton.unity.pogz2/"
任何指导将不胜感激!
【问题讨论】:
+1!好问题。可重现,并且您展示了到目前为止您已经尝试过的内容。 【参考方案1】:这是一个选项(你真的很接近):
xpathSApply(url.df_1,"//div[contains(.,'Customers Also Installed')]/*/li/a",xmlGetAttr,'href')
[1] "/app/android/xmas.candy.free/"
[2] "/app/android/com.candy.maker.jewel.nuttyapps/"
[3] "/app/android/com.terrypaton.unity.pogz2/"
【讨论】:
以上是关于R,使用 XML 和 xpathSApply 时的右 xpath 表达式的主要内容,如果未能解决你的问题,请参考以下文章