从 filemaker pro 16 导出数据记录,所有字符串都用“”引号

Export data records from filemaker pro 16 with all strings quoted with ""

是否可以从 filemaker 中导出数据记录并将所有字符串都放在 "" 引号中?对于字符串,我的意思是 type = text。不过数字应该不会改变。

如果您导出为 CSV,这是默认行为,只要您不启用导出 "Apply current layout’s data formatting..." 设置即可。

据我所知,在导出时没有提供此行为的选项。

fieldType() 函数可能会有帮助。 https://fmhelp.filemaker.com/help/16/fmp/en/index.html#page/FMP_Help/fieldtype.html

或者,只需创建一个计算字段 "row",其中包含您想要包含的所有字段 - 在文本字段周围附加引号 - 然后执行 "rows" 的 .tab 导出。我通常就是这样处理的。

我有同样的问题。 要从 .csv 中去除引号,我在 Excel 中打开 .csv 并将文件在 Excel 中保存为 .csv。 这会去掉双引号。