gpt4 book ai didi

arrays - 使用powershell从数组比较中获取缺失元素

转载 作者:行者123 更新时间:2023-12-02 09:51:42 24 4
gpt4 key购买 nike

Possible Duplicate:
Comparing two arrays & get the values which are not common

我想要一个逻辑来从数组中获取不常见的项目,例如:

$a=@(1,2,3,4,5,6)
$b=@(1,2,3,4,5,7,9,10)

我想要输出$c为 6,这是 $b 中缺少的元素数组,优先级应仅赋予 $a 的数组内容.

有人可以帮我解决这个问题吗?
谢谢!

最佳答案

要么是 empo 的方法,要么

$a1=@(1,2,3,4,5,8)
$b1=@(1,2,3,4,5,6)
Compare-Object $a1 $b1 |
Where-Object { $_.SideIndicator -eq '<=' } |
Foreach-Object { $_.InputObject }

返回 8

关于arrays - 使用powershell从数组比较中获取缺失元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6368905/

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