结果得到2列,只需要一个专门

时间:2018-03-28 20:01:48

标签: xpath google-sheets xml-import

使用下面的Importxml,我得到两列,一列是空的,另一列是我想要的数据。

=importxml("http://www.runeclan.com/clan/Ultimate_Despair/members?sort_by=name&order=asc","//*[contains(@class, 'clan_rank')]")

我是否有可能获得第二个?我尝试过以下内容,但由于它是一个元素,因此无效。

=importxml("http://www.runeclan.com/clan/Ultimate_Despair/members?sort_by=name&order=asc","//*[contains(@class, 'clan_rank')][2]")

1 个答案:

答案 0 :(得分:0)

尝试:

=INDEX(importxml("http://www.runeclan.com/clan/Ultimate_Despair/members?sort_by=name&order=asc","//*[contains(@class, 'clan_rank')]"),1,2)