System.AnsiStrings.StrLower
Delphi
function StrLower(Str: PAnsiChar): PAnsiChar;
C++
extern DELPHI_PACKAGE char * __fastcall StrLower(char * Str)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.AnsiStrings.pas System.AnsiStrings.hpp |
System.AnsiStrings | System.AnsiStrings |
Description
Converts a string to lowercase.
StrLower converts Str to lowercase and returns Str. StrLower only returns a copy of Str if the type of the return variable forces a cast.
Note: If the source string contains international characters, use AnsiStrLower instead. If the source string is an AnsiString (long string), use LowerCase (or AnsiLowerCase) instead.
See Also
Code Examples