VBA 使用Left或Left $获取字符串中最左边的3个字符

示例

Const baseString As String = "Foo Bar"

Dim leftText As String
leftText = Left$(baseString, 3)
'leftText = "Foo"