Difference between revisions of "string"

m (included link to other languages)
Line 1: Line 1:
 
Strings have the usual meaning: a sequence of characters. Lua is eight-bit clean and so strings may contain characters with any numeric value, including embedded zeros. That means that you can store any binary data into a string. See [http://www.lua.org/pil/2.4.html Programming in Lua].
 
Strings have the usual meaning: a sequence of characters. Lua is eight-bit clean and so strings may contain characters with any numeric value, including embedded zeros. That means that you can store any binary data into a string. See [http://www.lua.org/pil/2.4.html Programming in Lua].
 
[[Category:Data Types]][[Category:Lua]]
 
[[Category:Data Types]][[Category:Lua]]
 +
== Other Languages ==
 +
{{i18n|string}}

Revision as of 00:01, 5 January 2011

Strings have the usual meaning: a sequence of characters. Lua is eight-bit clean and so strings may contain characters with any numeric value, including embedded zeros. That means that you can store any binary data into a string. See Programming in Lua.

Other Languages