' Assign the leftmost 2 characters in "ABC". Dim subString As String subString$ = Left$("ABC", 2) Print subString$ ' Output: "AB"