Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要生成从 mySql 数据库中提取的查询的制表符分隔 CSV。我正在使用 MySQL 查询浏览器将数据提取为 ordenery CSV。
有谁知道如何将普通的逗号分隔的 CSV 转换为制表符分隔。我找不到在 Excel 和 Open Office 中执行此操作的方法。
曼尼谢谢!
ps 我正在使用 Windows 7 机器。
Linux?
sed 's/,/\t/g' commaDelimited > tabDelimited
视窗?
打开记事本,按TAB,选择并复制制表符空间。在记事本中打开 CSV,编辑->替换... 填写,第一个框并将标签粘贴到第二个框中,然后全部替换。
,