Difference between revisions of "MC-Basic:RIGHT$"
m (Text replace - "''<return value>''" to "<''return value''>") |
|||
Line 51: | Line 51: | ||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[ | + | * [[MC-Basic:LEFT$|LEFT$]] |
* [[Axystems:MC-Basic:MID$|MID$]] | * [[Axystems:MC-Basic:MID$|MID$]] | ||
Revision as of 08:38, 22 May 2014
RIGHT$ returns the specified number of characters from the right-hand side of the string.
In UTF-8 supporting versions 4.5.1 and higher NULL characters are no longer cut
out from strings, resulting in a different behavior:
Len of Chr$(0) is 1:
In former versions NULL characters could not appear in the middle of strings, since
the concationation process cut these characters from the resulting string.
Syntax
RIGHT$(<string>,<expression>)
Availability
All versions
Type
<return value>: String
<string>: String
<expression>: Long
Range
<return value>: String
<string>: String
<expression>: 0 to MaxLong
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
Test=”This string is too short”
-->PRINT RIGHT$(Test,4)
hort