gpt4 book ai didi

powershell - 从2个文件中获取内容并插入1个文件中

转载 作者:行者123 更新时间:2023-12-02 23:10:03 25 4
gpt4 key购买 nike

大家好,

我正在尝试将2个文件中的内容插入2列新的final.txt中

它们只是每个文件中的一列

例:

导入file1.txt

导入file2.txt

导出final.txt

$file1 = Get-Content .\test1.txt
$file2 = Get-Content .\test2.txt
foreach ($i in $file1){
foreach($y in $file2){
Write-Host "$i" + Write-Host "$y"
}
}
Out-File .\final.txt

最佳答案

您可以使用以下数组:

$file1 = Get-Content .\test1.txt
$file2 = Get-Content .\test2.txt
0..$($file1.Length-1) | % {add-Content -Value "$($file1[$_]), $($file2[$_])" -Path final.txt}

在表达式 a..b中, ..是范围运算符,它给出从 ab的整数集合,请参阅 about_operators

关于powershell - 从2个文件中获取内容并插入1个文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44516600/

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