/ Published in: Windows PowerShell
For clarity, I have broken two variables out, but this could easily be a one-liner. Usage: Replace X with the character you wish to use to pad (e.g. 0 (zero)). Replace Y with an integer representing the desired TOTAL length of the string.
Expand |
Embed | Plain Text
$padChar = "X" $paddedLength = Y $stringToPad = ($padChar * ($paddedLength - $stringToPad)) + $stringToPad
You need to login to post a comment.
