System.SysUtils.AnsiStrUpper

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AnsiStrUpper(Str: PAnsiChar): PAnsiChar;
function AnsiStrUpper(Str: PWideChar): PWideChar;

C++

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

Converts all characters in a null-terminated string to uppercase.

AnsiStrUpper returns a null-terminated string where all characters are uppercase. The conversion uses the current locale.

Note: This function supports multi-byte character sets (MBCS).

See Also