如何用 CSV 文件上的单词替换空值(字段)
我有一个逗号分隔的 CSV 文件,如下所示:
customer1,customer2,,customer4,
,customer2,,customer4,
custome1,,customer3,,
我想用“未知”一词替换 (,) 内的空值。
我怎样才能做到这一点?
I have a comma separated CSV file looks like:
customer1,customer2,,customer4,
,customer2,,customer4,
custome1,,customer3,,
I want replace null value inside (,)with word "unknown".
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您也想在行首或行尾添加未知,否则将起作用。
如果您还想在第一个缺失(行以
,
开头)或最后一个缺失(行以,
结尾)的情况下添加某些内容,那么您可以执行以下操作:我确信有一种更优雅的方式,但这是可行的。
will work except if you want to add unknown at the beginning or end of lines too.
If you also want to add something if the first is missing (line starts with
,
) or the last one is missing (line ends with,
), then you could do:I'm sure there is a more elegant way, but that works.