RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Character.ToLower Function

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

Pascal
function ToLower(C: Char): Char; overload;
function ToLower(const S: string): string; overload;
C++
Char ToLower(Char C);
AnsiString ToLower(const AnsiString S);

This function is overloaded. 

Converts the UTF-16 character C to its lower case 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. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!