如何从 Windows 中的大 csv 文件中删除特定列?

发布于 2024-11-19 19:22:08 字数 64 浏览 3 评论 0原文

文件大小可能超过 1GB。 我可以写一个脚本,但我想知道是否有一个简单的方法,例如使用Windows命令提示符?

The files sizes might be over 1GB.
I can write a script, but I wonder if there is a simple way, for example using Windows Command Prompt?

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

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

发布评论

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

评论(1

单身狗的梦 2024-11-26 19:22:08

我使用了以下解决方案:

1.从 GnuWin32 项目安装 FileUtils 包。

2。在命令提示符中运行命令:

cut -f<idxColumn> --complement -d,  <inputFile>  >  <outputFile>

例如:

cut -f3 --complement -d, d:/in.csv > d:/out.csv

I used the following solution:

1. Install FileUtils package from GnuWin32 project.

2. run command in command promt:

cut -f<idxColumn> --complement -d,  <inputFile>  >  <outputFile>

For example:

cut -f3 --complement -d, d:/in.csv > d:/out.csv

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