The Left function returns a string containing a specified number of characters from the left side of a string.
Syntax
|
The Left function returns a string containing a specified number of characters from the left side of a string. |
|
Left(string, numChars) |
|
Arguments: |
|
|
string |
String - A string. |
|
|
numChars |
Integer - An expression indicating how many characters to return. |
Remarks
- Example: Left("abcdefg", 3) returns "abc".
Comments
0 comments
Article is closed for comments.