rpad (<string>,<char> {,<num>} )
string
A string value suffixed with a number of occurrences of a character.
<string>
A string value to be edited.
<char>
A text character. <string> is is padded
out with occurrences of this until its length is <num>.
<num>
The final length of the result. If <string>
already has a length greater or equal to this, no action is taken.
Pad out to the right with periods a string to a new length of 10.
string newval = rpad(oldval,'.',10)
Functions: |
lpad (numeric) |