Search results for 'Unicode Decoding'. 1 post(s) found.
2009/07/20 15:09
Delphi string conversion functions - AnsiToUTF-8, UTF8Encode, ...
2009/07/20 15:09 in Delphi

Delphi already provide String Conversion functions variously. You just call conversion function.
function UnicodeToUtf8(Dest: PChar; Source: PWideChar; MaxBytes: Integer): Integer; overload; deprecated;
function Utf8ToUnicode(Dest: PWideChar; Source: PChar; MaxChars: Integer): Integer; overload; deprecated;
function UnicodeToUtf8(Dest: PChar; MaxDestBytes: Cardinal; Source: PWideChar; SourceChars: Cardinal): Cardinal; overload;
function Utf8ToUnicode(Dest: PWideChar; MaxDestChars: Cardinal; Source: PChar; SourceBytes: Cardinal): Cardinal; overload;
function UTF8Encode(const WS: WideString): UTF8String;
function UTF8Decode(const S: UTF8String): WideString;
function AnsiToUTF8(const S: string): UTF8String;
function UTF8ToAnsi(const S: UTF8String): string;
function Utf8ToUnicode(Dest: PWideChar; Source: PChar; MaxChars: Integer): Integer; overload; deprecated;
function UnicodeToUtf8(Dest: PChar; MaxDestBytes: Cardinal; Source: PWideChar; SourceChars: Cardinal): Cardinal; overload;
function Utf8ToUnicode(Dest: PWideChar; MaxDestChars: Cardinal; Source: PChar; SourceBytes: Cardinal): Cardinal; overload;
function UTF8Encode(const WS: WideString): UTF8String;
function UTF8Decode(const S: UTF8String): WideString;
function AnsiToUTF8(const S: string): UTF8String;
function UTF8ToAnsi(const S: UTF8String): string;
If you have problems in Delphi 2009, use above functions.
Another posts included in "Delphi"
| How to get file created time, modified time, and last accessed time ? (0) | 2009/08/19 |
| How to read/wrtie INI file in Delphi ? (0) | 2009/08/21 |
| Delphi Pointer Types (0) | 2009/08/22 |
| When subject is crashing in TIdSMTP VCL (0) | 2009/07/20 |
| How to send text/html based email in UTF-8 with TIdSMTP, TIdMessage VCL (0) | 2009/07/20 |
| How to encode subject content when sending mail with TIdMessage ? (0) | 2009/07/16 |
| Base64 Encoding/Decoding function for Delphi (0) | 2009/07/16 |
| How to send email by TIdSMTP VCL ? (0) | 2009/07/07 |
Prev

Rss Feed