Difference between revisions of "Str.lower"

From OpenEUO
Jump to: navigation, search
m (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...")
 
m (See Also)
 
(One intermediate revision by the same user not shown)
Line 15: Line 15:
 
   'Two strings',
 
   'Two strings',
 
   'Three strings'
 
   'Three strings'
  local r1,r2,r3 = s.len(a,b,c)
+
  local r1,r2,r3 = s.lower(a,b,c)
 
  print(r1)
 
  print(r1)
 
  print(r2)
 
  print(r2)
Line 36: Line 36:
 
* [[str|string table]]
 
* [[str|string table]]
  
* [[str.right]]
+
* [[str.upper]]
 
+
* [[str.split]]
+
  
 
* [http://www.easyuo.com/openeuo/wiki/index.php/Documentation#String_Functions Lua String Functions]
 
* [http://www.easyuo.com/openeuo/wiki/index.php/Documentation#String_Functions Lua String Functions]

Latest revision as of 18:38, 11 November 2010

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.lower(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