Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 885 Bytes

func_pad.rst

File metadata and controls

31 lines (21 loc) · 885 Bytes

$pad

Usage: $pad(text,length,character)
Category: text

Description:

Pads the text to the length provided by adding as many copies of character as needed to the beginning of the string. For the padded length to be correct, character must be exactly one character in length. If length is less than the number of characters in text, the function will return text. If length is missing or is not a number, the function will return an empty string.

Example:

The following statements will return the values indicated:

$pad(abc,5,+)   ==>  "++abc"
$pad(abc,0,+)   ==>  "abc"
$pad(abc,5,)    ==>  "abc"
$pad(abc,5,XY)  ==>  "XYXYabc"  (note final length is incorrect)
$pad(abc,,+)    ==>  ""
$pad(abc,x,+)   ==>  ""