【PowerShell】foreach ステートメント 2017年4月14日 (金) 21:00 in PowerShell foreach ステートメントの書き方です。 構文foreach (変数 in 配列やコレクション){ [配列やコレクションの要素数分繰り返される処理] } 例$array = 1,2,3,4,5,6,7,8,9,10 $sum = 0 foreach ($a in $array){ $sum = $sum + $a } スポンサーリンク https://hosopro.blogspot.com/2017/04/powershell-foreach-statement.html 【PowerShell】foreach ステートメント Related Posts