trimmedStr = string.rtrim ( str )
Name
Type
Description
str
string
String with possible white space at beginning and end
trimmedStr
String without any white space at end
print( string.trim(" hello world ") )
This will print " hello world"