Str.lower

From OpenEUO
Revision as of 18:30, 11 November 2010 by Ximan (Talk | contribs) (Created page with "== Calling Pattern == Call local r[,...] = sl.str.lower(a[,...]) Args a1...aN are strings, numbers, or nil Results r1...rN are strings == Usage Example == local s = sl.str...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Calling Pattern

Call

local r[,...] = sl.str.lower(a[,...])

Args

a1...aN are strings, numbers, or nil

Results

r1...rN are strings


Usage Example

local s = sl.str
local a,b,c =
  'One string',
  'Two strings',
  'Three strings'
local r1,r2,r3 = s.len(a,b,c)
print(r1)
print(r2)
print(r3)
--> one string
--> two strings
--> three strings

Description

Lower returns the lowercase version of all string arguments. Numerics and booleans are converted to strings. Nils are converted to empty strings.

Upon Error

Lower fails silently. If lower receives no arguments then nil is returned.

See Also