System.SysUtils.StrEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

extern DELPHI_PACKAGE char * __fastcall StrEnd _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 StrEnd is deprecated. Please use the AnsiStrings unit.

Returns a pointer to the end of a null-terminated string.

StrEnd returns a pointer to the null character at the end of Str.

See Also

Code Examples