LCASE

From Dark Signs Online
Revision as of 04:57, 18 March 2024 by Doridian (talk | contribs) (Created page with "''string'' '''LCASE'''(''string'' message) Returns the given string in lowercase. == Parameters == ''message'' String to put in lowercase. == Example == Sample input, now it wont matter if the user inputs '''y''' instead of '''Y''' <pre>$i = INPUT(Register Y/N?) $i = LCASE($i) IF $i = y THEN //Do something.</pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

string LCASE(string message)

Returns the given string in lowercase.

Parameters

message String to put in lowercase.

Example

Sample input, now it wont matter if the user inputs y instead of Y

$i = INPUT(Register Y/N?)
$i = LCASE($i)
IF $i = y THEN //Do something.