Left: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 28: | Line 28: | ||
== Related Items == | == Related Items == | ||
[[len| | [[len|Len]], [[mid|Mid]], [[right|Right]] | ||
[[Category:Language Reference]] | [[Category:Language Reference]] |
Revision as of 01:16, 24 August 2012
Left(string, length)
Description
Left returns a string containing a specified number of characters from the left end of a string. The required parameter, string, is any valid string expression. The required parameter, length, is any valid numeric expression, if length is 0, an empty string ("") is returned, if length is greater than the size of string, the entire string is returned.
Example
Rem Left Example 'Left returns substring from string left end Dim Wendy, Eric Wendy = "Testaburger" Eric = "Cartman" Print "The Left 4 of " & Wendy & ": " _ & Left(Wendy, 4) Print "The Left 4 of " & Eric & ": " _ & Left(Eric, 4)
Output
The Left 4 of Testaburger: Test The Left 4 of Cartman: Cart