String: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
A string is a sequence of characters, for example "Hello, World!" is a string.<br /> | A string is a sequence of characters, for example "Hello, World!" is a string.<br /> | ||
We propose a list of every string functions here. | We propose a list of every string functions here. | ||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.byte string.byte] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.char string.char] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.dump string.dump] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.find string.find] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.format string.format] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.gmatch string.gmatch] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.gsub string.gsub] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.len string.len] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.lower string.lower] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.match string.match] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.rep string.rep] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.reverse string.reverse] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.sub string.sub] | |||
* [http://www.lua.org/manual/5.2/manual.html#pdf-string.upper string.upper] | |||
[[Category:Scripting Concepts]] | [[Category:Scripting Concepts]] |
Revision as of 18:04, 10 April 2012
A string is a sequence of characters, for example "Hello, World!" is a string.
We propose a list of every string functions here.