System.AnsiStrings.StrRScan
Delphi
function StrRScan(const Str: PAnsiChar; Chr: AnsiChar): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrRScan(const char * Str, char Chr)/* overload */;
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.AnsiStrings.pas System.AnsiStrings.hpp |
System.AnsiStrings | System.AnsiStrings |
Description
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.