一个字段的多个值,采用逗号分隔值 .csv 格式

发布于 2024-09-25 19:36:54 字数 132 浏览 2 评论 0原文

.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听风吹 2024-10-02 19:36:54

是的。 CSV 文件的一个字段中可以有多个值。

如果多个值由空格分隔,则无需执行任何特殊操作,但如果值由逗号分隔,则需要将整个字段用双引号引起来。

例子:

Name,E-mail    
foo,[email protected] foo [email protected]
bar,"[email protected],[email protected]"

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:

Name,E-mail    
foo,[email protected] foo [email protected]
bar,"[email protected],[email protected]"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文