将两个 .csv 文件合并为一个文件

发布于 2024-12-02 01:17:35 字数 750 浏览 0 评论 0原文

我有两个 .csv 文件,我想将其合并为一个。
FileA 具有 DisplayName 和 Email 标头
FileB 有所有者标题。我无法将两者合并为一。任何帮助表示赞赏。

新文件的标题需要为:

DisplayName     电子邮件                               所有者

帐户A          [电子邮件受保护]           [电子邮件受保护]

I have two .csv files that I want to combine into one.
FileA has headers of DisplayName and Email
FileB has header of Owners. I have not been able to merge the two as one. Any help is appreciated.

The new file needs to have the headers as:

DisplayName      Email                                          Owners

AccountA           [email protected]           [email protected]

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

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

发布评论

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

评论(1

一笔一画续写前缘 2024-12-09 01:17:35

这是一种方法:

$filea = import-csv filea.csv
$fileb = import-csv fileb.csv

for($i=0;$i -lt $filea.count;$i++){
    $filea[$i] | Add-Member -MemberType NoteProperty -Name Owners -Value $fileb[$i].Owners
}

$filea | export-csv combined.csv -notype

This is one way of doing it:

$filea = import-csv filea.csv
$fileb = import-csv fileb.csv

for($i=0;$i -lt $filea.count;$i++){
    $filea[$i] | Add-Member -MemberType NoteProperty -Name Owners -Value $fileb[$i].Owners
}

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