Difference between revisions of "Utf8.match"
From GiderosMobile
Line 14: | Line 14: | ||
=== <translate>Return values</translate> === | === <translate>Return values</translate> === | ||
'''<translate>Returns</translate>''' (strings) <translate>captures</translate><br/> | '''<translate>Returns</translate>''' (strings) <translate>captures</translate><br/> | ||
+ | |||
+ | {{Utf8}} |
Revision as of 22:15, 11 February 2020
Available since: Gideros 2016.06
Class: utf8
Description
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 can be negative.
(strings) = utf8.match(s,pattern,init)
Parameters
s: (string)
pattern: (string)
init: (number) optional
Return values
Returns (strings) captures