是否可以将文本从在线 .txt 文件导入到 Google 工作表

Is it possible to import text from an online .txt file to Google sheets

我正在尝试将某些网站的 ads.txt 文件中的文本导入 Gsheets。我尝试 Importxml 但是它指出无法解析重要的 xml 内容。

示例: 我正在尝试从此文件导入文本 --> financhill.com/ads.txt

我正在使用此代码 =IMPORTXML("https://financhill.com/ads.txt","/html/body/pre/text()")

结果是N/A重要xml内容无法解析

当我看到URL的数据时,好像是CSV数据。我认为这就是您 the result is N/A important xml content can not be parsed. 问题的原因。在这种情况下,如何使用 IMPORTDATA 如下?

=IMPORTDATA("https://financhill.com/ads.txt")

=IMPORTDATA("https://financhill.com/ads.txt",",")

参考: