Difference between revisions of "Str"

From OpenEUO
Jump to: navigation, search
m (Usage Example)
m (See Also)
 
(8 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
== Description ==
 
== Description ==
  
Creates a local reference to the simplelib string methods table.  These methods provide basic string manipulation functionality similar to the functions provided by the easyuo str command.
+
Creates a local reference to the simplelib string methods table.  These methods provide basic string manipulation functionality similar to the functions provided by the easyuo str command.  See individual methods for descriptions and usage examples.
  
 
== Methods ==
 
== Methods ==
  
* [[cnt]]
+
* [[str.cnt]]
  
* [[del]]
+
* [[str.del]]
  
* [[eq]]
+
* [[str.eq]]
  
* [[isin]]
+
* [[str.fromhex]]
  
* [[ins]]
+
* [[str.isin]]
  
* [[join]]
+
* [[str.ins]]
  
* [[joinsep]]
+
* [[str.join]]
  
* [[left]]
+
* [[str.joinsep]]
  
* [[len]]
+
* [[str.left]]
  
* [[lower]]
+
* [[str.len]]
  
* [[mid]]
+
* [[str.lower]]
  
* [[notin]]
+
* [[str.mid]]
  
* [[right]]
+
* [[str.tohex]]
  
* [[sep]]
+
* [[str.notin]]
  
* [[split]]
+
* [[str.right]]
  
* [[upper]]
+
* [[str.sep]]
 +
 
 +
* [[str.split]]
 +
 
 +
* [[str.upper]]
  
 
== See Also ==
 
== See Also ==
 +
 +
* [http://www.easyuo.com/openeuo/wiki/index.php/Simplelib simplelib]
  
 
* [[keystr]]
 
* [[keystr]]
  
 
* [[keyvalstr]]
 
* [[keyvalstr]]
 +
 +
* [[tabletolua]]
 +
 +
* [http://www.easyuo.com/openeuo/wiki/index.php/Documentation#String_Functions Lua String Functions]

Latest revision as of 11:15, 24 November 2010

Usage Example

local s = sl.str

Description

Creates a local reference to the simplelib string methods table. These methods provide basic string manipulation functionality similar to the functions provided by the easyuo str command. See individual methods for descriptions and usage examples.

Methods

See Also