ImportXML Google Spreadsheet - 无法获取xml数据

时间:2012-08-10 10:21:35

标签: xml google-sheets

我似乎无法通过这个非常简单的示例将任何内容导入Google Spreadsheets:

=ImportXML("http://www.w3schools.com/xml/note.xml","/note/to")

尝试了不同的xml路径参数,但总是得到“分析错误”,而不是值。我做错了什么?

2 个答案:

答案 0 :(得分:1)

将公式中的符号从“,”更改为“;;”

=ImportXML("http://www.w3schools.com/xml/note.xml";"/note/to")

答案 1 :(得分:0)

您需要在xpath中添加两个斜线:

=IMPORTXML("http://www.w3schools.com/xml/note.xml","//note")