str rpad
Right-pad a string to a specific length
Signature
> str rpad ...rest --length --character
Parameters
...rest
: optionally check if string contains pattern by column paths--length {int}
: length to pad to--character {string}
: character to pad with
Examples
Right-pad a string with asterisks until it's 10 characters wide
> 'nushell' | str rpad -l 10 -c '*'
Right-pad a string with zeroes until it's 10 characters wide
> '123' | str rpad -l 10 -c '0'
Use rpad to truncate a string
> '123456789' | str rpad -l 3 -c '0'
Use rpad to pad Unicode
> '▉' | str rpad -l 10 -c '▉'