Saltar al contenido principal

LowerCase

Converts an ASCII string to lowercase.

Structure

LowerCase(string): string;

Parameters

Return Value

Description

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. |