User`s guide

APPENDIX A Function Reference
Users Guide 185
number length
The new length of the result string.
string stuffstring
The string to append.
Examples To expand a string by filling its right side:
uRStuff("3.5", 5) // returns "3.5 "
uRStuff("3.5", 5, "0") // returns "3.500"
uRTrim
Description Removes characters from the right side of the string. If the second parameter is
omitted, it defaults to spaces (ASCII 32).
Syntax string uRTrim(input, trimstring)
Parameters
string input
The input string.
string trimstring
The string to trim.
Examples To trim a string on the right side:
uRTrim("3.5 ") // returns "3.5"
uRTrim("3.500", "0") // returns "3.5"
uTrim
Description Removes characters from both sides of the string. If the second parameter is
omitted, it defaults to spaces (ASCII 32).
Syntax string uTrim(input, trimstring)
Parameters
string input
The input string.
string trimstring
The string to trim.
Examples To trim a string on both sides: