TRIM$ function
Purpose: TRIM$ removes the following characters from the leading and trailing parts of a string.
Syntax: RetStr$ = TRIM$(MainStr$) Parameters:
Return Value:
|
Example:
DIM RetStr$ RetStr$ = TRIM$(" ABCDEFG ") PRINT RetStr$
Result:
ABCDEFG