Extracts a number of characters from a string.
StringMid ( "string", start [, count] )
| string | The string to evaluate. |
| start | The character position to start. (1 = first character) |
| count | [optional] The number of characters to extract. By default the entire remainder of the string. |
Local $var = StringMid("I am a string", 3, 2)
MsgBox(0, "2 chars extracted from position 3 are:", $var)