Difference between revisions of "Utf8.gmatch"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2016.06<br/>
 
'''Available since:''' Gideros 2016.06<br/>
 
=== Description ===
 
=== Description ===
Returns an iterator function that, each time it is called, returns the next captures from pattern over the string s. If pattern specifies no captures, then the whole match is produced in each call.
+
<translate>Returns an iterator function that, each time it is called, returns the next captures from pattern over the string s. If pattern specifies no captures, then the whole match is produced in each call.
For this function, a caret '^' at the start of a pattern does not work as an anchor, as this would prevent the iteration.
+
For this function, a caret '^' at the start of a pattern does not work as an anchor, as this would prevent the iteration.</translate>
 
<source lang="lua">
 
<source lang="lua">
 
(function) = utf8.gmatch(s,pattern)
 
(function) = utf8.gmatch(s,pattern)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''s''': (string) <br/>
+
'''s''': (string) <translate></translate> <br/>
'''pattern''': (string) <br/>
+
'''pattern''': (string) <translate></translate> <br/>
 
=== Return values ===
 
=== Return values ===
'''Returns''' (function) iterator function<br/>
+
'''Returns''' (function) <translate>iterator function</translate><br/>

Revision as of 14:34, 23 August 2018

Available since: Gideros 2016.06

Description

Returns an iterator function that, each time it is called, returns the next captures from pattern over the string s. If pattern specifies no captures, then the whole match is produced in each call. For this function, a caret '^' at the start of a pattern does not work as an anchor, as this would prevent the iteration.

(function) = utf8.gmatch(s,pattern)

Parameters

s: (string)
pattern: (string)

Return values

Returns (function) iterator function