System.UTF8ToString
Delphi
function UTF8ToString(const S: _RawByteStr): string;
function UTF8ToString(const S: _ShortStr): string;
function UTF8ToString(const S: _PAnsiChr): string;
function UTF8ToString(const S: array of _AnsiChr): string;
function UTF8ToString(const S: array of Byte): string; overload;
C++
extern DELPHI_PACKAGE UnicodeString __fastcall UTF8ToString(const RawByteString S)/* overload */;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.pas System.hpp |
System | System |
Description
Convertit une chaîne UTF-8 en une chaîne décodée.
Appelez UTF8ToString pour convertir une chaîne UTF-8 en une chaîne décodée. S
est une chaîne ou un tableau de caractères UTF-8 ayant les formats suivants :
- RawByteString
- ShortString
- PAnsiChar
- Tableau de AnsiChar
- Tableau de Byte
Le résultat de la fonction est la valeur de la chaîne décodée correspondante.