Function call
|
Val
|
Length
|
Result
|
Notes
|
---|---|---|---|---|
Left(Val, Length)
|
24 St John's Road, Barnes
|
10
|
24 St John
|
The return value is the first 10 characters in the supplied string.
|
Left(Val, Length)
|
{4,2,9}
|
1
|
{4}
|
The return value is the first category in the supplied category list.
|
Left(Val, Length)
|
Split("The quick brown fox")
|
2
|
{The,quick}
|
The return value is the first two elements in the supplied array. See Split for more information.
|