12345678910111213141516171819202122232425262728293031323334353637 |
- .. _func_string_left:
- ====
- Left
- ====
- Left -
- Description
- ===========
- .. code-block:: blitzmax
- Left$( str$,n )
- Extract characters from the beginning of a string
- The Left$ command returns a substring of a String.
- Given an existing String and a @size, Left$ returns the first @size
- characters from the start of the String in a new String.
- Parameters
- ==========
- Return Values
- =============
- @size leftmost characers of @str
- Examples
- ========
- See Also
- ========
|