UNLEFT
STRING, LENGTH
This function will remove leftmost characters based on a length.
Example
PRINT UNLEFT("Hi World!", 3)
LINE BREAK
DEF string$=UNLEFT("Hi World!", 3)
PRINT string$
Output
World!
World!
World!
Put down that phone!
Please view me on real computer.
UNLEFT
STRING, LENGTH
This function will remove leftmost characters based on a length.
PRINT UNLEFT("Hi World!", 3)
LINE BREAK
DEF string$=UNLEFT("Hi World!", 3)
PRINT string$