移除重复行
移除重复记录,清理 CSV。
在应用中打开工作原理
- 在 GigaSieve 加载 CSV。
- 选择关键列(如 email)。
- 识别重复并保留第一行。
- 导出清理结果。
输入/输出示例
输入
email,plan a@example.com,pro b@example.com,free a@example.com,pro
输出
a@example.com,pro b@example.com,free
提示
先排序再去重更稳定。
移除重复记录,清理 CSV。
在应用中打开输入
email,plan a@example.com,pro b@example.com,free a@example.com,pro
输出
a@example.com,pro b@example.com,free
先排序再去重更稳定。