Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 3 个字符串:string1 string2 string3
string1 string2 string3
我想导出 file.csv
我尝试使用
echo "string1,string2,string3" >> file.csv
但它不工作
Tcl 中的文件处理需要更多的命令(但是当你写很多行时效率更高):
set f [open file.csv w] puts $f "string1,string2,string3" close $f
这w很关键:它说要打开文件进行写入。
w
如果您正在编写大量 CSV,请使用 Tcllib 中的包来完成这项工作。它为您处理复杂的边缘情况。