Ruby 中的正则表达式用于将 CSV 转换为 TSV
在 Ruby 中,识别引号内逗号的正则表达式是什么(例如“dog, cat, foo, bar”)?我的目的是将 CSV 文件转换为 TSV,并且我的一些字段包含我想要保留的引号内带有逗号的字符串。
In Ruby, what's a regular expression that identifies commas within quotes (e.g., "dog, cat, foo, bar")? My purpose is converting a CSV file to TSV, and some of my fields contain strings with commas within quotes that I want to preserve.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它必须是正则表达式吗?可以使用您最喜欢的 csv 库解析 CSV,然后使用选项卡重新加入吗?
Does it have to be a regex? Can just Parse the CSV using your fav csv library, and then rejoin using tabs?