Contents - Index
TRIM$
TRIM$(A$) removes any leading or trailing spaces in the string provided in A$, returning a string without these spaces.
Example:
G$=' abc '
H$=trim$(G$)
{Solution:
H$='abc'
}
String Functions