Function Dump/String Manipulation: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>MrNicNac
>Legend26
(Removed numerous, redundant links. Moved pattern section to top so readers know what a pattern is in a basic sense before looking at the functions.)
 
(48 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Map|[[Function Dump]]|[[Function Dump/String Manipulation|String Manipulation]]}}
{{CatUp|Function Dump}}


==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 some other languages). 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.


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)}}, and {{`|string.byte("literal", i)}} can be written as {{`|("literal"):byte(i)}}. Parameters written in brackets are optional.


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).




===string.byte (s [, i [, j]])===


==Patterns==
Patterns are the most useful things in string manipulation. The string library would, for the most part, be useless without them. What are patterns? Patterns are strings consisting of a series of character classes and pattern items that are used in many of the string functions. For instance, %a+ represents a word. The tutorials listed below explain patterns in their fullest with examples showing their use with the string library.
*[[Patterns|Patterns]]
*[[String_Patterns|A Beginner's Guide to String Patterns]]


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.
==string.byte (''s'' [, ''i'' = 1 [, ''j'' = i]])==
 
Returns [[:File:Ascii_Table.png|ascii values]] of the characters ''s[i]'', ''s[i+1]'', all the way until ''s[j]''. The default value for ''i'' is 1; the default value for ''j'' is i.


Note that numerical codes are not necessarily portable across platforms.
Note that numerical codes are not necessarily portable across platforms.


{{Example|
{{code and output|code =
<pre>
print( string.byte("d") )
print(string.byte ("abc", 1, 3))
print( string.byte("abc", 1, 3) )
 
|output =
Will result in:
100
97 98 99
97 98 99
</pre>
}}
}}


===string.char (···)===
==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.
Receives zero or more integers. Returns a string with length equal to the number of arguments, in which each character is the [http://wiki.roblox.com/index.php/Image:Ascii_Table.png ascii representation] equal to its corresponding number.


Note that numerical codes are not necessarily portable across platforms.
Note that numerical codes are not necessarily portable across platforms.


{{Example|
{{code and output|code =
<pre>
print( string.char(97, 98, 99, 100) )
print(string.char (97, 98, 99, 100))
|output =
 
Will result in:
abcd
abcd
</pre>
}}
}}


===string.dump (function)===
==string.dump (''function'')==




Returns a string containing a binary representation of the given function, so that a later loadstring on this string returns a copy of the function. function must be a Lua function without upvalues. This function is commonly used in [[Script Obfuscation|script obfuscation]].
Returns a string containing a binary representation of ''function'', so that a later loadstring on this string returns a copy of ''function''. string.dump is commonly used in [[Script Obfuscation|script obfuscation]].


{{Example|
{{code and output|code =
<pre>
function f()  
function f ()  
    print "hello, world"  
print "hello, world"  
end
end
s = string.dump (f)
s = string.dump(f)
assert (loadstring (s)) ()
loadstring(s)()
 
|output =
Will result in:
hello, world
hello, world [http://www.gammon.com.au/scripts/doc.php?lua=string.dump]
</pre>
}}
}}
[http://www.gammon.com.au/scripts/doc.php?lua=string.dump]


===string.find (s, pattern [, init [, plain]])===
==string.find (''s'', ''pattern'' [, ''init'' = 1 [, ''plain'' = false]])==
 


Looks for the first match of pattern in the string s. If it finds a match, then find returns the indices of s where this occurrence starts and ends; otherwise, it returns nil. A third, optional numerical argument init specifies where to start the search; its default value is 1 and may be negative. A value of true as a fourth, optional argument plain turns off the pattern matching facilities, so the function does a plain "find substring" operation, with no characters in pattern 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.
Looks for the first match of ''pattern'' in string ''s''. If a match is found, then string.find returns the '''locations''' (1, 3, etc.) of ''s'' where this occurrence starts and ends; otherwise, it returns nil. A third, optional numerical argument, ''init'', specifies where to start the search in the string; its default value is 1 and may be negative. A value of true as a fourth, optional argument, ''plain'', turns off the pattern matching facilities, so the function does a plain "find substring" operation, with no characters in pattern being considered "magic". Note that if ''plain'' is given, then ''init'' must be given as well.


{{Example|
If ''substring'' has captures, then in a successful match the captured values are also returned, after the two locations.
<pre>
print(string.find ("blahblah", "bla"))


Will result in:
{{code and output|code =
print( string.find("blahblah", "bla"))
print( string.find("roblox and lua", "(%w+) and (%w+)") )
|output =
1 3
1 3
</pre>
1 14 roblox lua
}}
}}


===string.format (formatstring, ···)===
==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). Here is a link to [[String Formatting|string formatting]].


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 printf family of standard C functions. The only differences are that the options/modifiers *, l, L, n, p, and h are not supported and that there is an extra option, q. The q option formats a string in a form suitable to be safely read back by the Lua interpreter: the string is written between double quotes, and all double quotes, newlines, embedded zeros, and backslashes in the string are correctly escaped when written. For instance, the call
{{code and output|code =
print( string.format("%c",65) );
|output=
A
}}


    string.format('%q', 'a string with "quotes" and \n new line')
==string.len (''s'')==


will produce the string:


    "a string with \"quotes\" and \
Receives ''s'' (a string) and returns its length. The empty string "" has length 0. Embedded zeros ([http://wiki.roblox.com/index.php/Image:Ascii_Table.png the null terminator]) are counted, so "a\000bc\000" has length 5.
      new line"


The options c, d, E, e, f, g, G, i, o, u, X, and x all expect a number as argument, whereas q and s expect a string.
{{code and output|code =
 
print( string.len("") )
This function does not accept string values containing embedded zeros, except as arguments to the q option.
print( string.len("a") )
 
print( string.len("ab") )
{{Example|
print( string.len("abc") )
<pre>
|output =
print (string.format ("To wield the %s you need to be level %i", "sword", 10))
0
Will result in:
1
To wield the sword you need to be level 10
2
</pre>
3
}}
}}


===string.gmatch (s, pattern)===
==string.lower (''s'')==


Receives ''s'' (a string) and returns a copy of ''s'' with all uppercase letters changed to lowercase. All other characters are left unchanged.


Returns an iterator function that, each time it is called, returns the next captures from pattern over string s. If pattern specifies no captures, then the whole match is produced in each call.
{{code and output|code =
print(string.lower ("Hi Mom!"))
|output =
hi mom!
}}


As an example, the following loop
==string.match (''s'', ''pattern'' [, ''init''])==


    s = "hello world from Lua"
    for w in string.gmatch(s, "%a+") do
      print(w)
    end


will iterate over all the words from string s, printing one per line. The next example collects all pairs key=value from the given string into a table:
Looks for the first match of string ''pattern'' in string ''s''. If it finds one, then match returns the captures from ''pattern''; otherwise, it returns nil. If ''pattern'' specifies no captures, then the whole match is returned. A third, optional numerical argument ''init'' specifies where to start the search; its default value is 1 and may be negative.


    t = {}
{{code and output|code =  
    s = "from=world, to=Lua"
print( string.match("I like pepperoni pizza", "p%w+") )
    for k, v in string.gmatch(s, "(%w+)=(%w+)") do
|output =
      t[k] = v
pepperoni
    end
 
For this function, a '^' at the start of a pattern does not work as an anchor, as this would prevent the iteration.
 
{{Example|
<pre>
for q in string.gmatch ("send money mom", "%a+") do
  print (q)
end
 
Will result in:
send
money
mom
</pre>
}}
}}


===string.gsub (s, pattern, repl [, n])===
In the above example, the {{`|p%w+}} represented a string that started with a p and goes until the end of a word.
 
 
Returns a copy of s in which all (or the first n, if given) occurrences of the pattern have been replaced by a replacement string specified by repl, which may be a string, a table, or a function. gsub also returns, as its second value, the total number of matches that occurred.
 
If repl is a string, then its value is used for replacement. The character % works as an escape character: any sequence in repl 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 the pattern specifies no captures, then the whole match is used 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 pattern specifies no captures, then the whole match is passed as a sole argument.
 
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")
==string.rep (''s'', ''n'')==
    --> 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.1.tar.gz"


{{Example|
<pre>
s = "I have some oranges. Oranges are red."


print(string.gsub(s,"Orange","Apple"))
Returns a string that is the combination of ''n'' copies of the string ''s''.


Will result in:
{{code and output|code =
I have some oranges. Apples are red. 1
print( string.rep("Blarg, ", 4) )
</pre>
|output =
Blarg, Blarg, Blarg, Blarg,
}}
}}




===string.len (s)===
==string.reverse (''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.
Returns a string that is the string ''s'' reversed.


{{Example|
{{code and output|code =
<pre>
print( string.reverse("!moM ,olleH") )
print(string.len (""))
|output =
print(string.len ("a"))
Hello, Mom!
print(string.len ("ab"))
print(string.len ("abc"))
 
Will result in:
0
1
2
3
</pre>
}}
}}


===string.lower (s)===


==string.sub (''s'', ''i'' [, ''j''])==


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.


{{Example|
Returns the substring of ''s'' that starts at ''i'' and continues until ''j''; ''i'' and ''j'' may be negative. If ''j'' is absent, then it is assumed to be equal to the length of ''s''.  In particular, the call string.sub(''s'',1,''j'') returns ''s'' until as many characters as ''j'', and string.sub(''s'', -''i'') returns a suffix of ''s'' with length ''i''.
<pre>
print(string.lower ("Hi Mom!"))


Will result in:
{{code and output|code =
hi mom!
print( string.sub("Hi Mom!", 1, 4) )
</pre>
print( string.sub("Hi Mom!", 2) )
|output=
Hi M
i Mom!
}}
}}


===string.match (s, pattern [, init])===
==string.upper (''s'')==




Looks for the first match of pattern in the string s. If it finds one, then match returns the captures from the pattern; otherwise it returns nil. If pattern specifies no captures, then the whole match is returned. A third, optional numerical argument init specifies where to start the search; its default value is 1 and may be negative.
Receives a string and returns a copy of this string with all lowercase letters changed to uppercase. All other characters are left unchanged.


{{Example|
{{code and output|code =
<pre>
print( string.upper("Hi Mom!") )
print (string.match ("I like pepperoni pizza", "pi..."))
|output =
 
HI MOM!
Will result in:
pizza
</pre>
}}
}}


==string.gmatch (''s'', ''pattern'')==


===string.rep (s, n)===


Returns an iterator function that, each time it is called, returns the next captures from ''pattern'' over string ''s''. If ''pattern'' specifies no captures, then the whole match is produced in each call.


Returns a string that is the concatenation of n copies of the string s.
As an example, the following loop:


{{Example|
<pre>
a=string.rep ("blah", 4)
print(a)


Will result in:
{{code and output|code =
blahblahblahblah
s = "hello world from Lua"
</pre>
for w in string.gmatch(s, "%a+") do
    print(w)
end
|output =
hello
world
from
Lua
}}
}}




===string.reverse (s)===
will iterate over all the words from string ''s'', printing one per line. The next example collects all pairs index=value from the given string into a table:




Returns a string that is the string ''s'' reversed.
{{code and output|code =
 
t = {}
{{Example|
s = "from=world, to=Lua"
<pre>
for k, v in string.gmatch(s, "(%w+)=(%w+)") do -- k and v are the returned captures
print(string.reverse ("!moM ,olleH"))
    t[k] = v
 
end
Will result in:
print(t.from, t.to)
Hello, Mom!
|output =
</pre>
world Lua
}}
}}




===string.sub (s, i [, j])===
For this function, a '^' at the start of ''pattern'' does not work as an anchor, as this would prevent the iteration. Here are some examples:
 
 
Returns the substring of s that starts at i and continues until j; i and j may 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 call string.sub(s,1,j) returns a prefix of s with length j, and string.sub(s, -i) returns a suffix of s with length i.
 
{{Example|
{{Example|
<pre>
{{code and output|code =
print(string.sub ("Hi Mom!", 1, 4))
local t={}
for matchedValue in string.gmatch("alphabet and numbers 1234-4321", "a") do -- Search for a in that string
    table.insert(t, matchedValue)
end
print("The letter a was found " .. #t.." times.")
|output =
The letter a was found 3 times.
}}
<br/>
{{code and output|code =
for x in string.gmatch("Numbers", "b") do -- Search for b in Numbers
print(x)
end
|output =
b
}}
}}


Will result in:
Alright, that was searching for plain text. Here are some examples with [[Function_Dump/String_Manipulation#Patterns|patterns]]:
Hi M
</pre>
<pre>
print(string.sub ("Hi Mom!", 1))


Will result in
{{code and output|code=
Hi Mom!
for q in string.gmatch ("send money mom", "%a+") do
</pre>
    print (q)
end
|output=
send
money
mom
}}
}}


===string.upper (s)===
{{code and output|code=  
for value in string.gmatch("Once upon a time, there were 34 fairies, 20 of which were smart.", "%d+") do -- Find numbers
    print("At least "..value.." of the fairies are magical.")
end
|output=
At least 34 of the fairies are magical.
At least 20 of the fairies are magical.
}}


 
{{code and output|code=
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.
for q in string.gmatch("My name is merlin11188", "(%a+)%d+") do
 
    print("The letter part of my name is "..q)
{{Example|
end
<pre>
|output=
print(string.upper ("Hi Mom!"))
The letter part of my name is merlin
 
Will result in:
HI MOM!
</pre>
}}
}}


===Patterns===
==string.gsub (''s'', ''pattern'', ''repl'' [, ''n''])==
Character Class:


A character class is used to represent a set of characters. The following combinations are allowed in describing a character class:


* '''x''' (where x is not one of the magic characters ^$()%.[]*+-?) represents the character x itself.
Returns a copy of ''s'' in which all (or the first ''n'', if given) occurrences of ''pattern'' have been replaced by replacement string ''repl'', which may be a string, a table, or a function. string.gsub also returns, as its second value, the total number of matches that occurred.
* '''.''' (a dot) represents all characters.
* '''%a''' represents all letters.
* '''%c''' represents all control characters.
* '''%d''' represents all digits.
* '''%l''' represents all lowercase letters.
* '''%p''' represents all punctuation characters.
* '''%s''' represents all space characters.
* '''%u''' represents all uppercase letters.
* '''%w''' represents all alphanumeric characters.
* '''%x''' represents all hexadecimal digits.
* '''%z''' represents the character with representation 0.
* '''%x''' (where x is any non-alphanumeric character) represents the character x. This is the standard way to escape the magic characters. Any punctuation character (even the non magic) can be preceded by a '%' when used to represent itself in a pattern.
* '''[set]''' represents the class which is the union of all characters in set. A range of characters may be specified by separating the end characters of the range with a '-'. All classes %x described above may also be used as components in set. All other characters in set represent themselves. For example, [%w_] (or [_%w]) represents all alphanumeric characters plus the underscore, [0-7] represents the octal digits, and [0-7%l%-] represents the octal digits plus the lowercase letters plus the '-' character.


The interaction between ranges and classes is not defined. Therefore, patterns like [%a-z] or [a-%%] have no meaning.
If ''repl'' is a string, then its value is used for replacement. The character % works as an escape character: any sequence in ''repl'' of the form %n, with n between 1 and 9, stands for the value of the n-th captured substring. The sequence %0 stands for the whole match.
* '''[^set]''' represents the complement of set, where set is interpreted as above.


For all classes represented by single letters (%a, %c, etc.), the corresponding uppercase letter represents the complement of the class. For instance, %S represents all non-space characters.
If ''repl'' is a table, then the table is queried for every match, using the first capture as the key; if ''pattern'' specifies no captures, then the whole match is used as the key.


The definitions of letter, space, and other character groups depend on the current locale. In particular, the class [a-z] may not be equivalent to %l.
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 ''pattern'' specifies no captures, then the whole match is passed as the sole argument.
Pattern Item:


A pattern item may be
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).


* a single character class, which matches any single character in the class;
Here are some examples using plain character replacement:
* a single character class followed by '*', which matches 0 or more repetitions of characters in the class. These repetition items will always match the longest possible sequence;
{{code and output|code=
* a single character class followed by '+', which matches 1 or more repetitions of characters in the class. These repetition items will always match the longest possible sequence;
print( string.gsub("hello world", "hello", "goodbye") )
* a single character class followed by '-', which also matches 0 or more repetitions of characters in the class. Unlike '*', these repetition items will always match the shortest possible sequence;
print( string.gsub("Bonjour!", "Bonjour", "Hello") )
* a single character class followed by '?', which matches 0 or 1 occurrence of a character in the class;
print( string.gsub("Avada Kedavra", "Avada Kedavra", "Abracadabra") )
* %n, for n between 1 and 9; such item matches a substring equal to the n-th captured string (see below);
print( string.gsub("I like to munch numbers 1234", "1234", "and words.") )
* %bxy, where x and y are two distinct characters; such item matches strings that start with x, end with y, and where the x and y are balanced. This means that, if one reads the string from left to right, counting +1 for an x and -1 for a y, the ending y is the first y where the count reaches 0. For instance, the item %b() matches expressions with balanced parentheses.
|output=
goodbye world
Hello!
Abracadabra
I like to munch numbers and words.}}


Pattern:
Those were all examples using plain character replacements. Here are some using [[Function_Dump/String_Manipulation#Patterns|patterns]]:


A pattern is a sequence of pattern items. A '^' at the beginning of a pattern anchors the match at the beginning of the subject string. A '$' at the end of a pattern anchors the match at the end of the subject string. At other positions, '^' and '$' have no special meaning and represent themselves.
{{code and output|code=
Captures:
print( string.gsub("hello world from Lua", "(%w+)%s*(%w+)", "%2 %1") )
 
print( string.gsub("I found an imaginary hex number: F243BC234AD234Ei", "%x+i", "Yeah right. That's not real.") )
A pattern may contain sub-patterns enclosed in parentheses; they describe captures. When a match succeeds, the substrings of the subject string that match captures are stored (captured) for future use. Captures are numbered according to their left parentheses. For instance, in the pattern "(a*(.)%w(%s*))", the part of the string matching "a*(.)%w(%s*)" is stored as the first capture (and therefore has number 1); the character matching "." is captured with number 2, and the part matching "%s*" has number 3.
print( string.gsub("home = $HOME, user = $USER", "%$(%w+)", {USER="Merlin", HOME="Camelot"}) )
 
print( string.gsub("$name-$version.tar.gz", "%$(%w+)", {name="lua", version="5.1"}) )
As a special case, the empty capture () captures the current string position (a number). For instance, if we apply the pattern "()aa()" on the string "flaaap", there will be two captures: 3 and 5.
print( string.gsub("4+5 = $return 4+5$", "%$(.-)%$", function (s)
 
    return loadstring(s)()
A pattern cannot contain embedded zeros. Use %z instead.
end) )
|output=
world hello Lua from
I found an imaginary hex number: Yeah right. That's not real.
home = Camelot, user = Merlin
lua-5.1.tar.gz
4+5 = 9
}}

Latest revision as of 17:58, 4 May 2012

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 some other languages). 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), and string.byte("literal", i) can be written as ("literal"):byte(i). Parameters written in brackets are optional.



Patterns

Patterns are the most useful things in string manipulation. The string library would, for the most part, be useless without them. What are patterns? Patterns are strings consisting of a series of character classes and pattern items that are used in many of the string functions. For instance, %a+ represents a word. The tutorials listed below explain patterns in their fullest with examples showing their use with the string library.

string.byte (s [, i = 1 [, j = i]])

Returns ascii values of the characters s[i], s[i+1], all the way until s[j]. The default value for i is 1; the default value for j is i.

Note that numerical codes are not necessarily portable across platforms.

print( string.byte("d") )
print( string.byte("abc", 1, 3) )

100

97 98 99

string.char (···)

Receives zero or more integers. Returns a string with length equal to the number of arguments, in which each character is the ascii representation equal to its corresponding number.

Note that numerical codes are not necessarily portable across platforms.

print( string.char(97, 98, 99, 100) )
abcd

string.dump (function)

Returns a string containing a binary representation of function, so that a later loadstring on this string returns a copy of function. string.dump is commonly used in script obfuscation.

function f() 
    print "hello, world" 
end
s = string.dump(f)
loadstring(s)()
hello, world

[1]

string.find (s, pattern [, init = 1 [, plain = false]])

Looks for the first match of pattern in string s. If a match is found, then string.find returns the locations (1, 3, etc.) of s where this occurrence starts and ends; otherwise, it returns nil. A third, optional numerical argument, init, specifies where to start the search in the string; its default value is 1 and may be negative. A value of true as a fourth, optional argument, plain, turns off the pattern matching facilities, so the function does a plain "find substring" operation, with no characters in pattern being considered "magic". Note that if plain is given, then init must be given as well.

If substring has captures, then in a successful match the captured values are also returned, after the two locations.

print( string.find("blahblah", "bla"))
print( string.find("roblox and lua", "(%w+) and (%w+)") )

1 3

1 14 roblox lua

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). Here is a link to string formatting.

print( string.format("%c",65) );
A

string.len (s)

Receives s (a string) and returns its length. The empty string "" has length 0. Embedded zeros (the null terminator) are counted, so "a\000bc\000" has length 5.

print( string.len("") )
print( string.len("a") )
print( string.len("ab") ) 
print( string.len("abc") )

0 1 2

3

string.lower (s)

Receives s (a string) and returns a copy of s with all uppercase letters changed to lowercase. All other characters are left unchanged.

print(string.lower ("Hi Mom!"))
hi mom!

string.match (s, pattern [, init])

Looks for the first match of string pattern in string s. If it finds one, then match returns the captures from pattern; otherwise, it returns nil. If pattern specifies no captures, then the whole match is returned. A third, optional numerical argument init specifies where to start the search; its default value is 1 and may be negative.

print( string.match("I like pepperoni pizza", "p%w+") )
pepperoni

In the above example, the p%w+ represented a string that started with a p and goes until the end of a word.

string.rep (s, n)

Returns a string that is the combination of n copies of the string s.

print( string.rep("Blarg, ", 4) )
Blarg, Blarg, Blarg, Blarg,


string.reverse (s)

Returns a string that is the string s reversed.

print( string.reverse("!moM ,olleH") )
Hello, Mom!


string.sub (s, i [, j])

Returns the substring of s that starts at i and continues until j; i and j may be negative. If j is absent, then it is assumed to be equal to the length of s. In particular, the call string.sub(s,1,j) returns s until as many characters as j, and string.sub(s, -i) returns a suffix of s with length i.

print( string.sub("Hi Mom!", 1, 4) )
print( string.sub("Hi Mom!", 2) )

Hi M

i Mom!

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.

print( string.upper("Hi Mom!") )
HI MOM!

string.gmatch (s, pattern)

Returns an iterator function that, each time it is called, returns the next captures from pattern over string s. If pattern specifies no captures, then the whole match is produced in each call.

As an example, the following loop:


s = "hello world from Lua"
for w in string.gmatch(s, "%a+") do
    print(w)
end

hello world from

Lua


will iterate over all the words from string s, printing one per line. The next example collects all pairs index=value from the given string into a table:


t = {}
s = "from=world, to=Lua"
for k, v in string.gmatch(s, "(%w+)=(%w+)") do -- k and v are the returned captures
    t[k] = v
end
print(t.from, t.to)
world Lua


For this function, a '^' at the start of pattern does not work as an anchor, as this would prevent the iteration. Here are some examples:

Example
local t={}
for matchedValue in string.gmatch("alphabet and numbers 1234-4321", "a") do -- Search for a in that string
    table.insert(t, matchedValue)
end
print("The letter a was found " .. #t.." times.")
The letter a was found 3 times.


for x in string.gmatch("Numbers", "b") do -- Search for b in Numbers
	print(x)
end
b


Alright, that was searching for plain text. Here are some examples with patterns:

for q in string.gmatch ("send money mom", "%a+") do
    print (q)
end

send money

mom
for value in string.gmatch("Once upon a time, there were 34 fairies, 20 of which were smart.", "%d+") do -- Find numbers
    print("At least "..value.." of the fairies are magical.")
end

At least 34 of the fairies are magical.

At least 20 of the fairies are magical.
for q in string.gmatch("My name is merlin11188", "(%a+)%d+") do
    print("The letter part of my name is "..q)
end
The letter part of my name is merlin

string.gsub (s, pattern, repl [, n])

Returns a copy of s in which all (or the first n, if given) occurrences of pattern have been replaced by replacement string repl, which may be a string, a table, or a function. string.gsub also returns, as its second value, the total number of matches that occurred.

If repl is a string, then its value is used for replacement. The character % works as an escape character: any sequence in repl of the form %n, with n between 1 and 9, stands for the value of the n-th captured substring. The sequence %0 stands for the whole match.

If repl is a table, then the table is queried for every match, using the first capture as the key; if pattern specifies no captures, then the whole match is used 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 pattern specifies no captures, then the whole match is passed as the sole argument.

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 using plain character replacement:

print( string.gsub("hello world", "hello", "goodbye") )
print( string.gsub("Bonjour!", "Bonjour", "Hello") )
print( string.gsub("Avada Kedavra", "Avada Kedavra", "Abracadabra") )
print( string.gsub("I like to munch numbers 1234", "1234", "and words.") )

goodbye world Hello! Abracadabra

I like to munch numbers and words.

Those were all examples using plain character replacements. Here are some using patterns:

print( string.gsub("hello world from Lua", "(%w+)%s*(%w+)", "%2 %1") )
print( string.gsub("I found an imaginary hex number: F243BC234AD234Ei", "%x+i", "Yeah right. That's not real.") )
print( string.gsub("home = $HOME, user = $USER", "%$(%w+)", {USER="Merlin", HOME="Camelot"}) )
print( string.gsub("$name-$version.tar.gz", "%$(%w+)", {name="lua", version="5.1"}) )
print( string.gsub("4+5 = $return 4+5$", "%$(.-)%$", function (s)
    return loadstring(s)()
end) )

world hello Lua from I found an imaginary hex number: Yeah right. That's not real. home = Camelot, user = Merlin lua-5.1.tar.gz

4+5 = 9