LCASE: Difference between revisions
From Dark Signs Online
Jump to navigationJump to search
(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>") |
(No difference)
|
Latest revision as of 05:57, 18 March 2024
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.