|
Left$ | ||
ReturnString$ = Left$(SourceString$, Length) | ||
Parameters: SourceString$ = The string you wish to grab the leading (left most) Characters from Length = The number of characters to grab, starting from the left side. |
||
Returns: ReturnString$ |
||
Left$ grabs the left part of the source string$ (the HEAD) starting at character one and moving across to the right, the number of characters we select. FACTS: * If the Length parameter is equal to or higher than the string length, then the source string is returned. Mini Tutorial:
This example would output.
|
||
Example Source: Download This Example
|
Related Info: | CutLeft$ | CutRight$ | Mid | mid$ | Right$ | Trim$ | TrimLeft$ | TrimRight$ : |
|
|||||||||||||||||||||||||||||||||||||||
(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com |