Description
Puts a number of string characters to the left of an input string based on overall length.
Signature
PadLeft('inputstring', totalLength, 'charToPad')
Example
PadLeft('1', 4, '0') Returns '0001'
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| inputstring | xxxx | xxxx | xxxx |
| totalLength | xxxx | xxxx | xxxx |
| charToPad | xxxx | xxxx | xxxx |
