Get the right most characters from the string
Member of Compatible Unicode Intrinsic Functions (PRIM_LIBI.ICompatibleUnicodeIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Unicode String | Resulting string |
Characters | *Input (Optional) | Integer | Number of characters to return |
Pad | *Input (Optional) | Unicode String | Pad character used to replace blanks in the result |
RightMost returns the 'n' rightmost characters from the string.
In this example, if #String contained "ABCDE" the result would be "CDE".
#Com_owner.Caption := #String.RightMost(3)
In this example, if #String contained "ABCDE" the result would be "*****ABCDE".
#Com_owner.Caption := #String.RightMost(10 ?*?)
Febuary 18 V14SP2