VBA/Excel/Access/Word/String Functions/Left — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:47, 26 мая 2010
Left() - A portion of a string beginning from the left side
Sub InstrLeft()
Dim userName As String
Dim firstName As String
Dim spaceLoc As Integer
userName = "First Last"
spaceLoc = InStr(1, userName, " ")
firstName = Left(userName, spaceLoc - 1)
Debug.Print firstName
End Sub
Left() Returns a substring from the left side of a string.
Sub strDemo5()
Debug.Print Left("Test", 2)
End Sub