RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.AnsiStrRScan Function

Returns a pointer to the last occurrence of a specified character in a specified string.

Pascal
function AnsiStrRScan(Str: PChar; Chr: Char): PChar;
C++
const char * AnsiStrRScan(const char * Str, Char Chr);

SysUtils

Call AnsiStrRScan to obtain a pointer to the last occurrence of Chr in Str. If Chr does not occur in Str, AnsiStrRScan returns nil (Delphi) or NULL (C++). The null terminator is considered to be part of the string. 

Unlike the StrRScan function, AnsiStrRScan works with multi-byte character systems (MBCS). 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!