System.SysUtils.LowerCase
Delphi
function LowerCase(const S: string): string;
function LowerCase(const S: string; LocaleOptions: TLocaleOptions): string;
C++
extern DELPHI_PACKAGE System::UnicodeString __fastcall LowerCase(const System::UnicodeString S)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
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 AnsiLowerCase.
See Also
Code Examples