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 文件,但我的文本数据080108不断转换为数字80108。我该怎么办?
080108
80108
在 CSV 中使用引号,以便将列视为字符串而不是整数。例如:
"Foo","080108","Bar"
我在使用 Microsoft Excel 查看 CSV 时经常看到这种情况。Excel 将截断所有数字字段中的前导零。如果输出不是来自 excel,则检查记事本中的输出。'如果它来自 excel,您需要在每个邮政编码的开头添加一个单引号。那么excel将保留前导0。
'