Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は配列 $a = 1,2,3,4,5 $b = 2,3 に以下を持っています
$a の出力が 1,4,5 になるように、$a から $b の内容を削除できますか?
前もってありがとうマット
コレクションを比較して、結果を $a に保存できます。
$a = 1,2,3,4,5 $b = 2,3 $a = compare $a $b -PassThru $a 1 4 5