System.Character.TCharacter.ToLower

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function ToLower(C: Char): Char; overload; inline; static;
class function ToLower(C: UCS4Char): UCS4Char; overload; inline; static;
class function ToLower(const S: string): string; overload; inline; static;

C++

static System::WideChar __fastcall ToLower(System::WideChar C)/* overload */;
static unsigned __fastcall ToLower(unsigned C)/* overload */;
static System::UnicodeString __fastcall ToLower(const System::UnicodeString S)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Character.pas
System.Character.hpp
System.Character TCharacter

Description

Converts a UTF-16 character to its lowercase equivalent according to the Unicode specification.

This function is overloaded.

Converts the UTF-16 character C to its lowercase equivalent according to the Unicode specification, if it exists; otherwise it returns the value passed in.

Returns a copy of the string S in which all characters have been converted to their lowercase equivalents according to the Unicode specification.

See Also

Code Examples