[powershell]10個のスペースの文字列を作る

超まとめ

" " * 10

説明

powershellでは文字列に数字を掛けると、その文字列を掛けた数字の回数だけ繰り返した文字列を返します。

"a" * 25
"ab" * 10

strtimes

コメントを残す