MID$ (x$, n, m) |
Purpose | This function returns a sub-string of m characters from x$,
beginning with the nth character. x$ - any
string expression, variable or constant. |
Examples | A$ = MID$("Welcome to TBASIC",4,7) |
Comments: | A$ should contain the string :"come to" |