System.SysUtils.AnsiLowerCase

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AnsiLowerCase(const S: string): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall AnsiLowerCase(const System::UnicodeString S)/* overload */;

Properties

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

Description

Returns a string that is a copy of the given string converted to lowercase.

AnsiLowerCase returns a string that is a copy of the given string converted to lowercase. The conversion uses the current locale. This function supports multi-byte character sets (MBCS).

See Also