String.find

From GiderosMobile
Revision as of 11:03, 23 August 2018 by Hgy29 (talk | contribs) (Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Looks for the first match of pattern in the string s. If it finds a match, then find returns the indic...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Available since: Gideros 2011.6

Description

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 can 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.
(numbers), = string.find(spatterninitplain,)

's: (string) string where to find a pattern '
'pattern: (string) pattern to find '
init: (number) index where to start searching for pattern optional
plain: (bool) if true, then it simply matches substring without any special symbols (default = false) optional
Returns (numbers) indexes of occurrence of the pattern or nil