From Clomosy Docs

Returns a string that is a copy of the given string converted to lowercase.

AnsiLowerCase returns a string that is a copy of the given string converted to lowercase. The conversion uses the current locale. This function supports multi-byte character sets.


Example

 var
   SimpleString : String;
 
 {
   SimpleString = AnsiLowerCase('I am learning CLOMOSY.');
   ShowMessage(SimpleString);
 }

Output:

See Also