System.AnsiStrings.StrScan
Delphi
function StrScan(const Str: PAnsiChar; Chr: AnsiChar): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrScan(const char * Str, char Chr)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.AnsiStrings.pas System.AnsiStrings.hpp |
System.AnsiStrings | System.AnsiStrings |
Description
Returns a pointer to the first occurrence of a specified character in a string.
StrScan returns a pointer to the first occurrence of Chr in Str. If Chr does not occur in Str, StrScan returns nil (Delphi) or NULL (C++). The null terminator is considered to be part of the string.
Note: If the source string contains international characters, use AnsiStrScan instead.
See Also
Code Examples