一个字段的多个值,采用逗号分隔值 .csv 格式
.csv 文件中的同一字段下是否可以有多个值?
我的网页上有一个“电子邮件”字段,用户可以选择输入多个地址。我希望我的 .csv 文件能够处理任意数量的“电子邮件”值。我怎样才能实现这个目标? .csv 由第三方程序读取,我无法修改。
Is it possible to have multiple values under the same field in a .csv file?
I have an "email" field on my webpage, and the user may optionally type in multiple addresses. I want my .csv file to be able to handle an arbitrary number of "email" values. How can I achieve this? The .csv is read by a third party program which I cannot modify.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 CSV 文件的一个字段中可以有多个值。
如果多个值由空格分隔,则无需执行任何特殊操作,但如果值由逗号分隔,则需要将整个字段用双引号引起来。
例子:
Yes. You can have multiple values in one filed of a CSV file.
If the multiple values are separated by space you need not do anything special but if the values are separated by a comma, you need to enclose the entire field in double quotes.
Example: