forked from QB64-Phoenix-Edition/QB64pe
-
Notifications
You must be signed in to change notification settings - Fork 0
RTRIM$
Samuel Gomes edited this page Nov 8, 2022
·
1 revision
The RTRIM$ function removes trailing space characters from a STRING value.
return$ = RTRIM$(value$)
- value$ is the STRING value to trim.
- If value$ contains no trailing space characters, value$ is returned unchanged.
- Convert fixed length STRING values by using a different return$ variable.
Trimming a fixed length string value for use by another string variable:
name$ = RTRIM$(contact.name) ' trims spaces from end of fixed length TYPE value.
Trimming text string ends:
PRINT RTRIM$("some text") + "."
PRINT RTRIM$("some text ") + "."
PRINT RTRIM$("Tommy ")
some text.
some text.
Tommy