StrTrimR
Use this function to isolate the text of a string from all trailing spaces.
where:
- SymName is the name of a symbol.
- String is a character string, enclosed in double quotation marks.
Copy
Example
CREATE VARIABLE StrTemp1 AS STRING
Variable = STRTRIMR ("SourceString")
SET VARIABLE StrTemp1 = STRTRIMR (" StringTest ")
StrTemp1 will equal " StringTest" (without the double quotation marks)