Find the last position of the value in this variable
Member of Unicode Intrinsic Functions (PRIM_LIBI.IUnicodeIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Integer | Resulting position |
String | *Input | Unicode String | String to be searched for |
LastPositionOf returns the last position of a string in the subject string. If the string is not found, the result will be 0. LastPositionOf is case sensitive.
In this example, if #String contained "ABCDEFGHIJKLMNOPQRSTUVWXYZ", the result would be 13
#LastPosition := #String.LastPositionOf( "M" )
Febuary 18 V14SP2