< Futurebasic < Language < Reference

Syntax

subString$

RIGHT$(string$,numChars)

subContainer$$

RIGHT$$(container$$,numChars)

Revised

May 30, 2000 (Release 3)

Description

This function returns a string or container consisting of the rightmost numChars characters of string$ or container$$. If numChars is greater than the length of string$ or container$$, the entire string$ or container$$ is returned. If numChars is less than 1, an empty (zero-length) string is returned.

Note: You may not use complex expressions that include containers on the right side of the equal sign. Instead of using: c$$ = c$$ + RIGHT$$(a$$,10) Use: c$$ += RIGHT$$(a$$,10)

Example: PRINT RIGHT$ ("Nebraska", 3) program output: ska

See Also

LEFT$; MID$; INSTR

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.