Mid$()
Previous  Next

Description: Returns a string from within a string.

     Syntax:
     
Mid$(<String>, <Start>, <Length>)


Part
Description
<String>
Required. The string expression from which the characters are returned.
<Start>
Required. The start position within the <String>.
<Length>
Required. The length of the returned string.

Example:

        a$ = "Hello World"
        Print Mid$(a$, 6, 5)