System.SysUtils.StrRScan
Delphi
function StrRScan(const Str: PAnsiChar; Chr: AnsiChar): PAnsiChar;
function StrRScan(const Str: PWideChar; Chr: WideChar): PWideChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrRScan _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const char * Str, char Chr)/* overload */;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Avertissement : La version ANSI de StrRScan est obsolète. Veuillez utiliser l’unité AnsiStrings.
Renvoie un pointeur sur la dernière occurrence d'un caractère spécifié dans une chaîne.
StrRScan renvoie un pointeur sur la dernière occurrence de Chr dans Str.
Si Chr ne se produit pas dans Str, StrRScan renvoie nil (Delphi) ou NULL (C++). Le caractère null de terminaison fait partie de la chaîne.
Remarque : Si la chaîne source contient des caractères internationaux, utilisez plutôt AnsiStrRScan.