Windows Powershell读取制表符分隔文件问题

发布于 2024-10-14 16:03:48 字数 251 浏览 1 评论 0原文

好吧,理论上我想要完成的事情应该非常简单,但我不知道出了什么问题。我正在尝试使用 import-csv cmdlet 读取 .tsv 文件。

我的语法是:

import-csv -path "myfile" -delimiter "`t"

问题是这只显示我文件中的第一列。为什么其他数据列不显示?我在记事本中检查了该文件,以验证数据实际上是由制表符分隔的,确实如此。

任何帮助将不胜感激。

OK so what I'm trying to accomplish should in theory be very easy but I can't figure out what's going wrong. I am trying to use the import-csv cmdlet to read in a .tsv file.

My syntax is:

import-csv -path "myfile" -delimiter "`t"

The problem is that this only displays the first column from my file. Why are the other data columns not being displayed? I checked the file in notepad to verify that the data is in fact separated by a tab and it is.

Any help would be appreciated.

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

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

发布评论

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

评论(1

萝莉病 2024-10-21 16:03:48

请编辑您的问题并输入正确的数据。这是我根据您的评论看到的

PS C:\Scripts\Scratch> Import-Csv -Path .\test.csv -Delimiter "`t"

Col1                          Col2                          Col3                          Col4
----                          ----                          ----                          ----
Data1                         Data2                         Data3                         Data4
Data5                         Data6                         Data7                         Data8

Pls edit your question and put the right data. Here is what I see based on your comment

PS C:\Scripts\Scratch> Import-Csv -Path .\test.csv -Delimiter "`t"

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