Converts all unicode escape sequences of type \uxxxx from string into corresponding characters.
Kernel.bdh
FromUnicode( in sSource : string ): string;
Parameter | Description |
---|---|
sSource |
Source string to be converted. |
dcltrans transaction TMain var sConverted : string; begin sConverted := FromUnicode("\u0061\0041\0062\u0042\u0063\u0043"); Print(sConverted); // "AaBbCc" end TMain;