[Overview][Constants][Types][Classes][Procedures and functions][Variables] | Reference for unit 'sysutils' (#rtl) |
Return a lowercase version of a string.
Source position: line 0
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 compatiibility only.
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.
No notes exist for this page yet.