Generates a string ID from the hash code of the specified string.
[Visual Basic] Function MakeID( _ ByVal p_sText As String _ ) As String [C#] string MakeID( string p_sText ); [C++] String* MakeID( String* p_sText ); [JScript] function MakeID( String p_sText ): String;
The ID is a string made of the hexadecimal value of the hash code value for the specified string and a prefix 'P' or 'N' depending whether the hash code is positive or negative.
IRoutines Interface | Okapi.Library.Base Namespace