func_string_left.rst 474 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .. _func_string_left:
  2. ====
  3. Left
  4. ====
  5. Left -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. Left$( str$,n )
  10. Extract characters from the beginning of a string
  11. The Left$ command returns a substring of a String.
  12. Given an existing String and a @size, Left$ returns the first @size
  13. characters from the start of the String in a new String.
  14. Parameters
  15. ==========
  16. Return Values
  17. =============
  18. @size leftmost characers of @str
  19. Examples
  20. ========
  21. See Also
  22. ========