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