System.SysUtils.TStringHelper.LowerCase

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function LowerCase(const S: string): string; overload; static; inline;
class function LowerCase(const S: string; LocaleOptions: TLocaleOptions): string; overload; static; inline;

Properties

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

Description

Converts an ASCII string to lowercase.

LowerCase returns a string with the same text as the string passed in S, but with all letters converted to lowercase. The conversion affects only 7-bit ASCII characters between 'A' and 'Z'. To convert 8-bit international characters, use ToLower.

The LocaleOptions parameter of the second LowerCase overloaded method is of type TLocaleOptions and defines a choice of dependent and independent locale options. For more information, please refer to the TLocaleOptions topic.

See Also