System.SysUtils.StrNextChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function StrNextChar(const Str: PAnsiChar): PAnsiChar;
function StrNextChar(const Str: PWideChar): PWideChar;

C++

extern DELPHI_PACKAGE char * __fastcall StrNextChar _DEPRECATED_ATTRIBUTE1("Moved to the AnsiStrings unit") (const char * Str)/* 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 StrNextChar is deprecated. Please use the AnsiStrings unit.

Returns a pointer to the following character.

Note: StrNextChar returns a pointer to the second character in Str, allowing for multi-byte characters.