gpt4 book ai didi

PowerShell 顺序敏感比较对象差异

转载 作者:行者123 更新时间:2023-12-04 12:49:54 24 4
gpt4 key购买 nike

是否可以使用 Compare-Object 对数组中的项目进行顺序比较?又名 diff在 PowerShell 中?如果没有,建议一个解决方法。

$a1=@(1,2,3,4,5)
$b1=@(1,2,3,5,4)
if (Compare-Object $a1 $b1) {
Write-Host 'Wrong order '
}
else {
Write-Host 'OK'
}

最佳答案

使用 -SyncWindow 0 :

$a1=@(1,2,3,4,5)
$b1=@(1,2,3,5,4)
if (Compare-Object $a1 $b1 -SyncWindow 0) {
Write-Host 'Wrong order '
}
else {
Write-Host 'OK'
}

更多信息: Comparing Arrays in Windows PowerShell .

关于PowerShell 顺序敏感比较对象差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40507552/

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