如何检查有效的 csv 文件?

发布于 2024-10-15 09:54:34 字数 503 浏览 0 评论 0原文

我有一个这种格式的 csv 文件

"emails"
"[email protected]"
"[email protected]"
"[email protected]"

如果文件不是上述格式,我想抛出文件格式错误。如何做到这一点?

I have a csv file in this format

"emails"
"[email protected]"
"[email protected]"
"[email protected]"

If a file is not in the above format, I want to throw a file format error. How to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

无所的.畏惧 2024-10-22 09:54:34

只需使用 csv 模块读取文件 - 检查第一行是否与您期望的标题匹配,然后使用正则表达式(re 模块)检查后续行中的电子邮件地址...如果出现这些情况,则抛出适当的异常或终止程序措施失败。

Just use the csv module to read the file -- check the first row matches the header you expect, and use a regex (re module) to check the email addresses in subsequent lines... Throw the appropriate exception or terminate the program if these measures fail.

零度℉ 2024-10-22 09:54:34

只需尝试 cutplace 它会验证您的 csv 是否符合指定的格式。

Just try cutplace it validates if your csv conforms to a specified format.

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