System.SysUtils.AnsiStrRScan

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AnsiStrRScan(Str: PAnsiChar; Chr: AnsiChar): PAnsiChar;
function AnsiStrRScan(Str: PWideChar; Chr: WideChar): PWideChar;

C++

extern DELPHI_PACKAGE char * __fastcall AnsiStrRScan _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (char * Str, char Chr)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Warning: The ANSI version of AnsiStrRScan is deprecated. Please use the AnsiStrings unit.

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

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).

See Also