我有一个.txt文件,其中包含一些我要导入Google工作表文档的数据。
文本文件如下所示:
["Note"] = "<00001>",
["Name"] = "test1",
["Note"] = "<00002>",
["Name"] = "test2",
["Note"] = "<00003>",
["Name"] = "test3",
["Note"] = "<00004>",
["Name"] = "test4",
["Note"] = "<00005>",
["Name"] = "test5",
我希望它在2列中,1个名为Note,另一个名为Name,可能吗?
答案 0 :(得分:0)
您可以将其转换为.csv
,然后将其加载到Google Spreadsheets中。
例如,您的数据看起来像这样:(第一行代表每列的标题)
Note,Name
<00001>,test1
<00002>,test2
<00003>,test3
<00004>,test4
<00005>,test5
然后导入为:
答案 1 :(得分:0)
如果您的数据已经存在于Sheets中(例如A2:A11),并且您准备手动添加列标签,然后将其复制到适合的B2中:
=left(mid(offset($A2,int((row()-2)),),find("=",offset($A2,int((row()-2)),))+3,50),len(mid(offset($A2,int((row()-2)),),find("=",offset($A2,int((row()-2)),))+3,50))-2)
在C2中:
=left(mid(offset($A2,1+int((row()-2)),),find("=",offset($A2,1+int((row()-2)),))+3,50),len(mid(offset($A2,1+int((row()-2)),),find("=",offset($A2,int((row()-2)),))+3,50))-2)