%str.lpad(<string>, <val>, <char>)
Left-pad a string.
Example
string test
test := "123"
reply.Reply-Message := "Maximum should be %str.lpad(test, 11, '0')"
Output
Maximum should be 00000000123
Left-pad a string.
string test
test := "123"
reply.Reply-Message := "Maximum should be %str.lpad(test, 11, '0')"
Maximum should be 00000000123