Mega Code Archive

 
Categories / Delphi / Functions
 

Lowercase - change upper case characters in a string to lower case sysutils unit

function LowerCase ( const MixedString : string ) : string; Description The LowerCase function creates a copy of MixedString with all letters converted to lower case. It is obsolete - use AnsiLowerCase instead, which takes into account multi-byte strings, and accented characters. Related commands AnsiLowerCase Change upper case characters in a string to lower case AnsiUpperCase Change lower case characters in a string to upper case