String.lower

From Data Realms Wiki

(Difference between revisions)
Jump to: navigation, search
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>...")

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:

  1. print(string.lower ("Hello, world!"))

Will result in: hello, world!

Personal tools