[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return a lowercase version of a string.
Source position: sysstrh.inc line 72
function LowerCase( |
const s: string |
):string; overload; |
const V: variant |
):string; overload; |
LowerCase returns the lowercase equivalent of S. Ansi characters are not taken into account, only ASCII codes below 127 are converted. It is completely equivalent to the lowercase function of the system unit, and is provided for compatibility only.
Lowercase does not change the number of characters (or bytes) in an ansistring or shortstring.
None.
|
Return a lowercase version of a string. |
|
|
Return an uppercase version of a string. |
|
|
Return an uppercase version of a string, taking into account special characters. |
Program Example77; { This program demonstrates the LowerCase function } Uses sysutils; Begin Writeln (LowerCase('THIS WILL COME out all LoWeRcAsE !')); End.