|
|
|
|
|
Right (Function) In french: Droite Extracts the last characters from a string or string buffer.
Right("The cuckoo", 6)
Right("ABC", 50)
Right(" AZELMA")
MyString is string = "Antananarivo - Madagascar"
Right(MyString, 10)
Syntax
Extracting the last characters from a string Hide the details
<Result> = Right(<Initial string> [, <Length>])
<Result>: Character string - Last characters of <Initial string>. Corresponds to <Initial string> if <Length> is greater than the length of <Initial string>.
- EOT if <Length> is negative. A WLanguage error occurs (non-fatal error). To get more details on the error, use ErrorInfo.
<Initial string>: Character string String from which the last characters will be extracted. This string is not modified. <Length>: Optional integer Number of characters to extract. If this parameter is not specified, <Result> corresponds to <Initial string> without leading spaces. Remarks Right and UNICODE If the string passed as a parameter is an ANSI string, the result will be an ANSI string. If the string passed as a parameter is a UNICODE string, the result will be a UNICODE string. Reminder: In UNICODE, each character uses two bytes.. Therefore, the memory size of UNICODE strings is twice the number of characters actually contained in the string. The fist character in the string is at index 1. Remark: If the function is used on an ANSI string and the result is assigned to a UNICODE string or vice versa, a conversion will be implicitly performed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|