Language:
Русский
English
StrRScan (function) (Strings unit)
Returns a pointer to the last occurrence of a character in a string.
Declaration
function StrRScan(Str: PChar; Chr: Char): PChar;
Target
Windows
Return Value
A pointer to the last occurance of Chr in Str nil if Chr does not occur in Str
Remarks
StrRScan returns a pointer to the last occurrence of Chr in Str. If Chr does not occur in Str, StrRScan returns nil. The null terminator is considered to be part of the string.