gpt4 book ai didi

powershell - 将列表中的行添加到第二个列表Powershell中的行

转载 作者:行者123 更新时间:2023-12-03 01:11:33 27 4
gpt4 key购买 nike

在Powershell中:我有2个列表-FontIDList和FontDefinitionList。我想获取FontID的第一行并添加FontDefinition的第一行。重复所有元素,然后写入文本文件。我试过了:

$newContent = $FontIDList2 | foreach {$_ + $FontDefList2}

Add-Content "C:\Desktop\MasterFontList-TimeStamps\TestLatestDate.txt" -value $newContent

$newContent = $FontIDList2 + FontDefList2一样-我很确定我需要使用某种 foreach,但是不确定语法。

最佳答案

您可以通过索引而不是使用for循环来进行迭代,然后连接字符串:

$newContent = for ($i = 0 ; $i -lt $FontIDList.Count ; $i++) {
$FontIDList[$i] + $FontDefList2[$i]
}
Add-Content "C:\Users\dtxxxxx\Desktop\MasterFontList-TimeStamps\TestLatestDate.txt" -value $newContent

请注意, Add-Content添加到文件中,不确定是否正是您想要的。

关于powershell - 将列表中的行添加到第二个列表Powershell中的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38793834/

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