$PadR

From m204wiki
Revision as of 19:09, 7 October 2016 by JAL (talk | contribs) (use lowercase)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The $PadR function allows padding to the right with a designated character. $PadR works exactly like $Pad, with the exception that $Pad pads to the left while $PadR pads to the right.

Note: Many $functions have been superseded by SOUL OO methods. The Left (String function) provides a right-padding feature similar to $PadR.

Example

$padr('123.65','*',9) equals '123.65***'