Sunday, August 14, 2011

[Research] Visual Basic Functions - Mid


The Mid function has 2 required and one optional input. It returns characters(as a String) from a string, starting at point x, until point y.

Mid(str, Start, Length).

str is the string to be searched, Start is the integer number of the first character to return, and Length is an optional length parameter. If not input, it will return the string from Start to the end of the string.

No comments:

Post a Comment