TRIM
r = TRIM(s)
Removes all leading and trailing white-space from string
s
.
Example
" test "
s = trim(s)
t = print "->" + s + "<-"
print "->" + t + "<-"
' Output:
' -> test <-
' ->test<-
Code samples using TRIM
r = TRIM(s)
Removes all leading and trailing white-space from string
s
.
" test "
s = trim(s)
t = print "->" + s + "<-"
print "->" + t + "<-"
' Output:
' -> test <-
' ->test<-