Mid$() |
Previous Next |
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.
|
a$ = "Hello World"
Print Mid$(a$, 6, 5)
|