Difference between revisions of "LowerCase"

From SCAR Divi Manual
Jump to: navigation, search
(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 10: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!

See Also