Module string
String Manipulation.
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.
Type string
string.byte(s, i, j) |
Returns the internal numerical codes of the characters |
string.char(...) |
Receives zero or more integers. |
string.dump(f) |
Returns a string containing a binary representation of the given function,
so that a later |
string.find(s, pattern, init, plain) |
Looks for the first match of |
string.format(formatstring, ...) |
Returns a formatted version of its variable number of arguments following the description given in its first argument (which must be a string). |
string.gmatch(s, pattern) |
Returns an iterator function that, each time it is called, returns the
next captures from |
string.gsub(s, pattern, repl, n) |
Returns a copy of |
string.len(s) |
Receives a string and returns its length. |
string.lower(s) |
Receives a string and returns a copy of this string with all uppercase letters changed to lowercase. |
string.match(s, pattern, init) |
Looks for the first match of |
string.rep(s, n) |
Returns a string that is the concatenation of |
string.reverse(s) |
Returns a string that is the string |
string.sub(s, i, j) |
Returns the substring of |
string.upper(s) |
Receives a string and returns a copy of this string with all lowercase letters changed to uppercase. |
Type string
Field(s)
- string.byte(s, i, j)
-
Returns the internal numerical codes of the characters
s[i], s[i+1], ..., s[j]
.The default value for i is 1; the default value for j is i. These indices are corrected following the same rules of function
string.sub
.Numerical codes are not necessarily portable across platforms.
Parameters
-
#string s
: string to handle. -
#number i
: start index, default value is 1. -
#number j
: end index, default value isi
.
Return value
the internal numerical codes of the characters
s[i]
,s[i+1]
,...,s[j]
-
- string.char(...)
-
Receives zero or more integers.
Returns a string with length equal to the number of arguments, in which each character has the internal numerical code equal to its corresponding argument.
Note that numerical codes are not necessarily portable across platforms.
Parameter
-
...
: zero or more integers.
Return value
#string: a string with length equal to the number of arguments, in which each character has the internal numerical code equal to its corresponding argument.
-
- string.dump(f)
-
Returns a string containing a binary representation of the given function, so that a later
load
on this string returns a copy of the function (but with new upvalues).Parameter
-
f
: the function to dump.
Return value
#string: a string representation of the given function.
-
- string.find(s, pattern, init, plain)
-
Looks for the first match of
pattern
in the strings
.If it finds a match, then
find
returns the indices ofs
where this occurrence starts and ends; otherwise, it returns nil. A third, optional numerical argumentinit
specifies where to start the search; its default value is 1 and can be negative. A value of true as a fourth, optional argumentplain
turns off the pattern matching facilities, so the function does a plain "find substring" operation, with no characters inpattern
being considered "magic". Note that if plain is given, then init must be given as well.If the pattern has captures, then in a successful match the captured values are also returned, after the two indices.
Parameters
-
#string s
: string to handle. -
#string pattern
: pattern to search. -
#number init
: index where to start the search. (default value is 1) -
#boolean plain
: set to true to search without pattern matching. (default value is false)
Return values
-
#number, #number: start and end indices of first occurrence.
-
#nil: if pattern not found.
-
- string.format(formatstring, ...)
-
Returns a formatted version of its variable number of arguments following the description given in its first argument (which must be a string).
The format string follows the same rules as the ANSI C function
sprintf
. The only differences are that the options/modifiers*
,h
,L
,l
,n
, andp
are not supported and that there is an extra option,q
. Theq
option formats a string between double quotes, using escape sequences when necessary to ensure that it can safely be read back by the Lua interpreter. For instance, the callstring.format('%q', 'a string with "quotes" and \n new line')
will produce the string:
"a string with \"quotes\" and \ new line"
Options
A
anda
(when available),E
,e
,f
,G
, andg
all expect a number as argument. Optionsc
,d
,i
,o
,u
,X
, andx
also expect a number, but the range of that number may be limited by the underlying C implementation. For optionso
,u
,X
, andx
, the number cannot be negative. Optionq
expects a string; options
expects a string without embedded zeros. If the argument to options
is not a string, it is converted to one following the same rules oftostring
.Parameters
-
#string formatstring
: the string template. -
...
: arguments could be strings or numbers.
Return value
#string: the formatted string.
-
- string.gmatch(s, pattern)
-
Returns an iterator function that, each time it is called, returns the next captures from
pattern
over strings
.If
pattern
specifies no captures, then the whole match is produced in each call. As an example, the following loop will iterate over all the words from string s, printing one per line:s = "hello world from Lua" for w in string.gmatch(s, "%a+") do print(w) end
The next example collects all pairs key=value from the given string into a table:
t = {} s = "from=world, to=Lua" for k, v in string.gmatch(s, "(%w+)=(%w+)") do t[k] = v end
For this function, a '
^
' at the start of a pattern does not work as an anchor, as this would prevent the iteration.Parameters
-
#string s
: string to handle. -
#string pattern
: pattern to search.
Return value
Iterator of captures.
-
- string.gsub(s, pattern, repl, n)
-
Returns a copy of
s
in which all (or the firstn
, if given) occurrences of the pattern have been replaced by a replacement string specified byrepl
, which can be a string, a table, or a function.gsub
also returns, as its second value, the total number of matches that occurred. The namegsub
comes fromGlobal SUBstitution
.If
repl
is a string, then its value is used for replacement. The character%
works as an escape character: any sequence inrepl
of the form%n
, with n between 1 and 9, stands for the value of the n-th captured substring (see below). The sequence%0
stands for the whole match. The sequence%%
stands for a single%
.If
repl
is a table, then the table is queried for every match, using the first capture as the key.If
repl
is a function, then this function is called every time a match occurs, with all captured substrings passed as arguments, in order.If the value returned by the table query or by the function call is a string or a number, then it is used as the replacement string; otherwise, if it is false or nil, then there is no replacement (that is, the original match is kept in the string).
Here are some examples:
x = string.gsub("hello world", "(%w+)", "%1 %1") --> x="hello hello world world" x = string.gsub("hello world", "%w+", "%0 %0", 1) --> x="hello hello world" x = string.gsub("hello world from Lua", "(%w+)%s*(%w+)", "%2 %1") --> x="world hello Lua from" x = string.gsub("home = $HOME, user = $USER", "%$(%w+)", os.getenv) --> x="home = /home/roberto, user = roberto" x = string.gsub("4+5 = $return 4+5$", "%$(.-)%$", function (s) return loadstring(s)() end) --> x="4+5 = 9" local t = {name="lua", version="5.1"} x = string.gsub("$name-$version.tar.gz", "%$(%w+)", t) --> x="lua-5.2.tar.gz"
Parameters
-
#string s
: string to handle. -
#string pattern
: pattern to search. -
repl
: replacement could be a string, a table or a function. -
#number n
: number of occurences to replace, default is nil which means all occurences.
Return value
#string: a modified copy of
s
. -
- string.len(s)
-
Receives a string and returns its length.
The empty string
""
has length 0. Embedded zeros are counted, so"a\000bc\000"
has length 5.Parameter
-
#string s
: string to handle.
Return value
#number: the lenght of
s
. -
- string.lower(s)
-
Receives a string and returns a copy of this string with all uppercase letters changed to lowercase.
All other characters are left unchanged. The definition of what an uppercase letter is depends on the current locale.
Parameter
-
#string s
: string to handle.
Return value
#string: a lower case version of
s
. -
- string.match(s, pattern, init)
-
Looks for the first match of
pattern
in the strings
.If it finds one, then
match
returns the captures from the pattern; otherwise it returns nil. Ifpattern
specifies no captures, then the whole match is returned. A third, optional numerical argumentinit
specifies where to start the search; its default value is 1 and can be negative.Parameters
-
#string s
: string to handle. -
#string pattern
: pattern to search. -
#number init
: index where to start the search. (default value is 1)
Return value
#string: the captures from the pattern; otherwise it returns nil. If pattern specifies no captures, then the whole match is returned.
-
- string.rep(s, n)
-
Returns a string that is the concatenation of
n
copies of the strings
.Parameters
-
#string s
: string to handle. -
#number n
: number of repetition.
Return value
#string: the concatenation of
n
copies of the strings
. -
- string.reverse(s)
-
Returns a string that is the string
s
reversed.Parameter
-
#string s
: string to handle.
Return value
#string: the string
s
reversed. -
- string.sub(s, i, j)
-
Returns the substring of
s
that starts ati
and continues untilj
;i
andj
can be negative.If
j
is absent, then it is assumed to be equal to -1 (which is the same as the string length). In particular, the callstring.sub(s,1,j)
returns a prefix ofs
with lengthj
, andstring.sub(s, -i)
returns a suffix ofs
with lengthi
. If, after the translation of negative indices, i is less than 1, it is corrected to 1.If
j
is greater than the string length, it is corrected to that length. If, after these corrections,i
is greater thanj
, the function returns the empty string.Parameters
-
#string s
: string to handle. -
#number i
: start index. -
#number j
: end index. (default value is -1, which is the same as the string lenght)
Return value
#string: the substring of
s
that starts ati
and continues untilj
. -
- string.upper(s)
-
Receives a string and returns a copy of this string with all lowercase letters changed to uppercase.
All other characters are left unchanged. The definition of what a lowercase letter is depends on the current locale.
Parameter
-
#string s
: string to handle.
Return value
#string: a upper case version of
s
. -