Description | The |
Syntax | PAD_RIGHT( |
Output | text |
Variable
text
: The original text value that you want to pad.length
: The desired total length of the resulting string after padding.character
: The character used for padding. This should be a single character.
Example
PAD_RIGHT(`Column 1`, 5, "*")
Column 1 | PAD_RIGHT |
42 | 42*** |
7 | 7**** |
123 | 123** |