Lua SwxWare v13.10
The helper function removes all space characters from the right from a given string.
local sRight = StringRTrim(str)
This function returns a string value.
Example:
local sRight = StringRTrim(" Erika Mustermann ") PBXScript.OutputTrace("#" .. sRight .. "#") --> # Erika Mustermann#
By Tom Wellige