gpt4 book ai didi

excel - 使用 PowerShell 将列从一个 csv 文件复制到另一个

转载 作者:行者123 更新时间:2023-12-04 08:34:51 26 4
gpt4 key购买 nike

我有两个 csv 文件,每个文件都有几列。
我想将 1.csv 列复制到 2.csv 文件。
例如:
1.csv 包含以下内容:
姓名,上次登录日期

用户 1 2020 年 15 月 11 日
用户 2 2020 年 12 月 11 日
2.csv 包含以下内容:
机器名、用户名、状态

win10-test1 tst1 可用
win10-test2 tst2 已连接
我想将 1.csv 文件列添加到 2.csv 文件或创建一个包含所有列的新 csv/excel 文件,如下所示:
名称、上次登录日期、机器名称、用户名、状态

user1 2020 年 15 月 11 日 win10-test1 tst1 可用
user2 2020 年 12 月 11 日 win10-test2 tst2 已连接
(试图寻找解决方案但没有运气)
谢谢。
enter image description here

最佳答案

我建议以下解决方案,但从以下假设开始(否则由您来纠正程序):
A.两个csv文件的分隔符是逗号
B.两个文件之间的“连接”相当于SQL中的“左连接”。如果 2.csv 文件的行数比 1.csv 文件多,多余的行将被忽略

#get content of first csv with delimiter is coma
$Content1=import-csv "c:\temp\1.csv" -Delimiter ","

#get content of second csv with delimiter is coma
$Content2=import-csv "c:\temp\2.csv" -Delimiter ","

#get all columns to 2.csv
$MemberToGet=Get-Member -InputObject $Content2[0] -MemberType NoteProperty | sort Name

$i=-1

#For every row of 1.csv i take the same position row of content 2.csv and add all property and his value to current object, and finally export result
$Content1 | %{
$CurrentRowObject=$_
$i++
$MemberToGet | %{
$Name=$_.Name
Add-Member -InputObject $CurrentRowObject -MemberType NoteProperty -Name $Name -Value $Content2[$i]."$Name"
}

#send to output the result object
$CurrentRowObject


} | export-csv "c:\temp\3.csv" -NoType

关于excel - 使用 PowerShell 将列从一个 csv 文件复制到另一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64843697/

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