RTRIM
r = RTRIM (s)
Removes trailing white-spaces from string s
.
Example
" abcd "
s =
print ">" + s + "<" ' Output: > abcd <
print ">" + rtrim(s) + "<" ' Output: > abcd<
Code samples using RTRIM
r = RTRIM (s)
Removes trailing white-spaces from string s
.
" abcd "
s =
print ">" + s + "<" ' Output: > abcd <
print ">" + rtrim(s) + "<" ' Output: > abcd<