我正在尝试从网站导入一些数据,这些数据每月在Google表格中进行更新。我对这个数字特别感兴趣:“ 1910” see this picture。
我输入:
=IMPORTXML("https://ratings.fide.com/card.phtml?event=36050601";"//table[@class='contentpaneopen']/tr[2]//tr[1]//tr[4]//tr[1]/td[1]")
我的问题是,它同时导入std.
和1910
,因为它们位于同一单元格中。
是否可以摆脱此std.
而仅导入值1910
?
答案 0 :(得分:0)
您可以使用index来获取第三个返回值,如下所示:
=index(IMPORTXML("https://ratings.fide.com/card.phtml?event=36050601","//table[@class='contentpaneopen']/tr[2]//tr[1]//tr[4]//tr[1]/td[1]"),0,3)