| A string function that returns a substring with n chracters starting from i of string-expression.
Syntax: MID$(string-expression, i, n) A$ = MID$("Hello",3,2) '-- returns ll
Details: You cannot use MID$ in this way: MID$(A$, 1, 1) = "G" Under QBasic, this valid statement replaces the first character from A$ with "G". To acheive the same effect under Rapid-Q, please use the REPLACE$ string function.
For using strings > 32K, use the SnakeDile fixed RC.EXE dated
November, 2006 or later.
|
|