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.
全部
我正在尝试更改 csv 文件中的“分隔符”,以便可以将其作为 excel 文件打开。
我知道分隔列的分隔符是';'。但是新行的分隔符是什么?
谢谢
对于 windows 机器:vbCrLf或Chr(13) & Chr(10) 回车然后换行
vbCrLf
Chr(13) & Chr(10)
如果您要在多个平台上使用此代码,那么vbNewLine将是平台所需的任何内容(windows/unix/mac/whatever)
vbNewLine