4WS.Platform provides a method to apply the right padding to a string:
rightPad(str, len);
this function will return the new text with spaces to the right of the text;
rightPad("X", 3)
will return “X “
Last updated 5 years ago