Returns a specified number of characters from a string.
Syntax –
Mid(string, start[, length])
Example –
The following example uses the Mid function to return six characters, beginning with the fourth character, in a string:
Dim MyVar MyVar = <b>Mid(</b>"VBScript is fun!"<b>,</b> 3<b>,</b> 6<b>)</b> ' MyVar contains "Script".