Difference between revisions of "String"
Line 9: | Line 9: | ||
The string library assumes one-byte character encodings.</translate> | The string library assumes one-byte character encodings.</translate> | ||
{|- | {|- | ||
− | | style="width: 50%;"| | + | | style="width: 50%; vertical-align:top;"| |
=== Methods === | === Methods === | ||
− | [[string.byte]] | + | [[string.byte]] ''<translate>returns numerical code, nil if index out of range, default i=1</translate>''<br/> |
− | [[string.char]] | + | [[string.char]] ''<translate>returns a string built from 0 or more integers</translate>''<br/> |
− | [[string.dump]] | + | [[string.dump]] ''<translate>returns binary representation of function, used with loadstring</translate>''<br/> |
− | [[string.find]] | + | [[string.find]] ''<translate>matches pattern in s, returns start,end indices, else nil</translate>''<br/> |
− | [[string.format]] | + | [[string.format]] ''<translate>returns formatted string, printf-style</translate>''<br/> |
− | [[string.gmatch]] | + | [[string.gmatch]] ''<translate>returns iterator function that returns next captures from pattern pat on s</translate>''<br/> |
− | [[string.gsub]] | + | [[string.gsub]] ''<translate>returns copy of s with pat replaced by repl, and substitutions made</translate>''<br/> |
− | [[string.len]] | + | [[string.len]] ''<translate>returns string length</translate>''<br/> |
− | [[string.lower]] | + | [[string.lower]] ''<translate>returns string with letters in lower case</translate>''<br/> |
− | [[string.match]] | + | [[string.match]] ''<translate>Searches a string for a pattern.</translate>''<br/> |
− | [[string.rep]] | + | [[string.rep]] ''<translate>returns string with n copies of string s</translate>''<br/> |
− | [[string.sub]] | + | [[string.sub]] ''<translate>returns substring from index i to j of s, default j=-1(string length-</translate>''<br/> |
− | [[string.upper]] | + | [[string.upper]] ''<translate>returns string with letters in upper case</translate>''<br/> |
− | | style="width: 50%;"| | + | | style="width: 50%; vertical-align:top;"| |
=== Events === | === Events === | ||
=== Constants === | === Constants === | ||
|} | |} |
Revision as of 14:29, 23 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
This library provides generic functions for string manipulation, such as finding and extracting substrings, and pattern matching. When indexing a string in Lua, the first character is at position 1 (not at 0, as in C). Indices are allowed to be negative and are interpreted as indexing backwards, from the end of the string. Thus, the last character is at position -1, and so on.
The string library provides all its functions inside the table string. It also sets a metatable for strings where the __index field points to the string table. Therefore, you can use the string functions in object-oriented style. For instance, string.byte(s, i) can be written as s:byte(i).
The string library assumes one-byte character encodings.
Methodsstring.byte returns numerical code, nil if index out of range, default i=1 |
EventsConstants |