/
Lua Strings
Lua Strings
This is a Lua string:
local AString = "This is a string"
Lua supports a multiline form of declaring strings where you can start with the string with [[ and end it with ]]. This is analogous to Javascript declaring a multiline string.
local ALongString=[[
This is
a long
multiple line string.
]]
The same syntax can be used with comments:
-- A single line comment.
--[[
A multiple line
comment!
]]
To find the length of a string we use the # operator:
local Length = #ALongString
, multiple selections available,
Related content
Example code showing the eight basic types in Lua
Example code showing the eight basic types in Lua
More like this
The core eight types in Lua.
The core eight types in Lua.
More like this
Immutable Strings
Immutable Strings
More like this
How we handle QA and support with a lot more Lua libraries?
How we handle QA and support with a lot more Lua libraries?
Read with this
String:find()
String:find()
More like this
String:match()
String:match()
More like this