我需要从互联网上获取一组 html 格式的向量。
我正在以这种方式阅读网页:
add=url
doc=htmlTreeParse(add)
这是文档的外观:
文档 $file [1] "http://ifis.iowafloodcenter.org/ifis/ifis5/ws/objects.php?id=741&type=4"
$version
[1] ""
$children
$children$html
<html>
<body>
<p>743,762,754,759,761,744,741,755,758,742,757,716,760</p>
</body>
</html>
attr(,"class")
[1] "HTMLDocument"
我希望获得以下数字
作为向量。
我尝试使用:
xmlValue(xmlRoot(doc) )
但这并没有给我向量。
如何做呢?
感谢您阅读