====== MID$ ====== The ''MID$()'' funcition returns //// characters from a sring, starting from ////. ===== Syntax ===== MID$(, , ) Unlike in CBM BASIC, the character position is zero-based, i. e. the first character's position is 0. ===== Example ===== DIM in$ AS STRING * 30 in$ = "xc=basic programming language" PRINT MID$(in$, 9, 11) : REM outputs: programming ===== See also ===== * [[v3:left|]] * [[v3:right]]