System.SysUtils.AnsiStrLower

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

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

AnsiStrLower returns a null-terminated character sequence where all characters are lowercase. The conversion uses the current locale.

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

See Also