Mid() Returns a substring from inside a string. : Mid « String Functions « VBA / Excel / Access / Word






Mid() Returns a substring from inside a string.

 
Sub strDemo7()
   Debug.Print Mid("Test", 2, 2)
End Sub

 

Related examples in the same category

1.Mid() returns Any portion of a string