String.lower
From Data Realms Wiki
(Difference between revisions)
Doves (Talk | contribs)
(Created page with "==string.lower (s)== Receives s (a string) and returns a copy of s with all uppercase letters changed to lowercase. All other characters are left unchanged. Example: <code lua n>...")
(Created page with "==string.lower (s)== Receives s (a string) and returns a copy of s with all uppercase letters changed to lowercase. All other characters are left unchanged. Example: <code lua n>...")
Latest revision as of 22:08, 8 October 2011
string.lower (s)
Receives s (a string) and returns a copy of s with all uppercase letters changed to lowercase. All other characters are left unchanged. Example:
Will result in: hello, world!