System.Character.TCharHelper.ToLower

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

Properties

Type Visibility Source Unit Parent
function public System.Character.pas System.Character TCharHelper

Description

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

This method 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