Difference between revisions of "string"

(Created page with '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 mean…')
 
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]]

Revision as of 07:50, 9 June 2010

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.