Right pads a string with spaces or specified characters to reach the number of characters specified as a parameter.
base_expression: The expression to pad.
length: The number of characters to return.
pad_expression: Characters to pad the base_expression with.
Examples
base_expression: The expression to pad.
length: The number of characters to return.
Examples
If pad_expression
is not specified, then the base_expression
will be padded with spaces. If length
is less than the length of the base_expression
, the base_expression
will be truncated to the length. If the length
+ the length of the base_expression
is less than the length of the base_expression
+ the length of the pad_expression
, only the subset of the characters from the pad_expression
required to fill the length will be appended to the base_expression
.