Return the string as a codepoint
Member of String Intrinsic Functions (PRIM_LIBI.IStringIntrinsics)
Name | Type | Data Type | Description |
---|---|---|---|
Result | *Result (Optional) | Integer | The resulting codepoint |
AsCodePoint returns the first character of the subject Unicode string as its numeric value or code point.
In this example, if #String contained "ABC" the result would be 65.
#Result := #String.AsCodePoint
Febuary 18 V14SP2