String.pad()

Signature

String pad (String s1, int length, String padCharacter)

Domain

ACTION, CONDITION, QUERY

Description

Returns a string padded to the indicated length with the pad character.

Parameters

NameTypeDescription
s1StringA String to pad.
lengthintLength of string.
padCharacterStringPad character.

Returns

TypeDescription
StringThe padded result String.

Cautions

none