$PadR

From m204wiki
(Redirected from $PADR)
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***'