Difference between revisions of "Str"
From OpenEUO
(Initial str page) |
m (→See Also) |
||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Usage Example == | == Usage Example == | ||
− | local s | + | local s = sl.str |
== 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]] |
− | * [[ | + | * [[str.fromhex]] |
− | * [[ | + | * [[str.isin]] |
− | * [[ | + | * [[str.ins]] |
− | * [[ | + | * [[str.join]] |
− | * [[ | + | * [[str.joinsep]] |
− | * [[ | + | * [[str.left]] |
− | * [[ | + | * [[str.len]] |
− | * [[ | + | * [[str.lower]] |
− | * [[ | + | * [[str.mid]] |
− | * [[ | + | * [[str.tohex]] |
− | * [[ | + | * [[str.notin]] |
− | * [[ | + | * [[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
Contents
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.