12345678910111213141516171819202122232425262728293031323334353637 |
- .. _func_string_right:
- =====
- Right
- =====
- Right -
- Description
- ===========
- .. code-block:: blitzmax
- Right$( str$,n )
- Extract characters from the end of a string
- The Right$ command returns a substring of a String.
- Given an existing String and a @size, Right$ returns the last @size
- characters from the end of the String.
- Parameters
- ==========
- Return Values
- =============
- @size rightmost characters of @str
- Examples
- ========
- See Also
- ========
|