我想找到数组a1的所有元素,哪些项不是数组a2和数组a3的一部分.
例如:
$a1 = @(1,2,3,4,5,6,7,8) $a2 = @(1,2,3) $a3 = @(4,5,6,7)
预期结果:
8
powershell
powershell ×1