Click to Rate and Give Feedback
MSDN
MSDN Library
Web Development
Scripting
VBScript
 Mid Function

  Switch on low bandwidth view
This page is specific to
.NET Framework 3.0

Other versions are also available for the following:
Visual Basic Scripting Edition
Mid Function

Returns a specified number of characters from a string.

Mid(string, start[, length])
string

String expression from which characters are returned. If string contains Null, Null is returned.

start

Character position in string at which the part to be taken begins. If start is greater than the number of characters in string, Mid returns a zero-length string ("").

length

Number of characters to return. If omitted or if there are fewer than length characters in the text (including the character at start), all characters from the start position to the end of the string are returned.

To determine the number of characters in string, use the Len function.

The following example uses the Mid function to return six characters, beginning with the third character, in a string:

Dim MyVar

MyVar = Mid("VBScript is fun!", 3, 6) ' MyVar contains "Script".

NoteNote:

The MidB function is used with byte data contained in a string. Instead of specifying the number of characters, the arguments specify numbers of bytes.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker