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.
Powershell で正規表現を使用して、配列内の項目の後に空白を追加して、各項目の文字長が 15 になるようにすることはできますか?
Dog[12 spaces] Tiger[10 spaces] Elephant[7 spaces]
ありがとう。
メソッドを使用できますPadRight:
PadRight
"Dog".PadRight(15, ' ')
http://msdn.microsoft.com/en-us/library/36f2hz3a.aspx