gpt4 book ai didi

powershell - 无法在现有的CSV文件中添加额外的列

转载 作者:行者123 更新时间:2023-12-03 00:34:06 25 4
gpt4 key购买 nike

我有一个.csv文件,其中包含以下数据:

Name IDABC 1234CDE 3456

I am trying to insert a column called "Date" as the first column.

Date        Name     ID2018-03-28  ABC     12342018-03-28  CDE     3456

I am using below import-export:

$a = Import-Csv -Path c:\filename.csv -Header Date,Name,Id
$a | Export-Csv -Path c:\outfile.csv -NoTypeInformation

但以上无法正常工作。它正在替换列数据。

日期名称ID
美国广播公司1234
CDE 3456

最佳答案

您需要将属性添加到对象:

$a= import-csv -path c:\filename.csv -header Name,Id
foreach($item in $a){
Add-Member -Input $item -MemberType NoteProperty -Name Date -Value '2018-03-28'
}
$a | Select-Object Date, Name, ID | export-csv -path c:\outfile.csv -Notypeinformation

关于powershell - 无法在现有的CSV文件中添加额外的列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49541446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com