Difference between revisions of "String.gmatch"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Returns an iterator function that, each time it is called, returns the next captures from pattern over...")
 
Line 24: Line 24:
 
  For this function, a '^' at the start of a pattern does not work as an anchor, as this would prevent the iteration.
 
  For this function, a '^' at the start of a pattern does not work as an anchor, as this would prevent the iteration.
 
<source lang="lua">
 
<source lang="lua">
(function), = string.gmatch(spat,)
+
(function) = string.gmatch(s,pat)
 
</source>
 
</source>
'''s:''' (string) string where to look for patterns ''''''<br/>
+
'''s''': (string) string where to look for patterns ''''''<br/>
'''pat:''' (string) pattern to look for ''''''<br/>
+
'''pat''': (string) pattern to look for ''''''<br/>
 
'''Returns''' (function) iterator function<br/>
 
'''Returns''' (function) iterator function<br/>

Revision as of 11:18, 23 August 2018

Available since: Gideros 2011.6

Description

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`
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: 
    `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.
(function) = string.gmatch(s,pat)

's: (string) string where to look for patterns '
'pat: (string) pattern to look for '
Returns (function) iterator function