需要帮助使用importxml和xpath从网站获取数据

时间:2016-06-07 11:10:25

标签: xpath

我想帮助使用importxml / xpath从此链接获取ROE旁边的数据。 http://fundamentus.com.br/detalhes.php?papel=TAEE11 ...所以在这种情况下,ROE数据是20,8%。我想使用importxml / xpath获取此值。

怎么做?我尝试了一些公式但是......无法从网站上获取详细信息。

我感谢所有支持。

最好的问候

1 个答案:

答案 0 :(得分:0)

您可以结合使用importxml,match和index:

=index(IMPORTXML("http://fundamentus.com.br/detalhes.php?papel=TAEE11","//*[@class='txt']"),match("roe",IMPORTXML("http://fundamentus.com.br/detalhes.php?papel=TAEE11","//*[@class='txt']"),0)+1,0)

基本上发生的事情是,通过指向类@txt,它会堆叠数据字段上方的所有标签,因此您可以一致地搜索ROE等标签,并将索引增加1以检索相应的值

enter image description here