String - RPad
Syntax: =RPad(Text, Length , FillWith )
Description: Returns the string Text padded to the right with
characters FillWith to the total length specified.
Text : string to pad Length : target length of the padded
string FillWith : character used to fill the Text string to the
required length
Example: Print the word Title and right
pad it with equal signs to a length of
25: =RPad("Title",25,"=")
|