$PadR: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (use lowercase) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
<p>The $ | <p> | ||
The <var>$PadR</var> function allows padding to the right with a designated character. <var>$PadR</var> works exactly like <var>[[$Pad]]</var>, with the exception that <var>$Pad</var> pads to the left while <var>$PadR</var> pads to the right. </p> | |||
</p> | |||
<p>Many $functions have been | <p class="note"><b>Note:</b> Many $functions have been superseded by [[Object oriented programming in SOUL|SOUL OO]] methods. The [[Left (String function)]] provides a right-padding feature similar to <var>$PadR</var>. </p> | ||
==Example== | |||
<p class="code">$padr('123.65','*',9) equals '123.65***' | |||
</p> | </p> | ||
[[Category:SOUL $functions]] | [[Category:SOUL $functions]] |
Latest revision as of 19:09, 7 October 2016
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***'