Difference between revisions of "LowerCase"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function Lowercase(s: AnyString): AnyString; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Changes a [[...") |
(No difference)
|
Revision as of 09:12, 28 June 2011
Definition
function Lowercase(s: AnyString): AnyString;
Availability
SCAR Divi 3.00 > Current
Description
Changes a string s to lowercase.
Example
begin WriteLn(Lowercase('HELLO WORLD!')); end.
Output:
hello world!