2
0

func_string_right.rst 459 B

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