Difference between revisions of "Find"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
imported>Ulti
(improving regex "see also" navigation)
 
(One intermediate revision by one other user not shown)
Line 5: Line 5:
 
FunctionPage|
 
FunctionPage|
 
name={{#var:name}}|
 
name={{#var:name}}|
function_category=String Handling Routines|
 
  
 
function1={{Function|
 
function1={{Function|
Line 21: Line 20:
  
  
see_also={{SeeAlso|group}}|
+
see_also={{SeeAlso|create_matcher|group|group_count|group_string}}|
 
}}
 
}}
 +
 +
[[Category:String Handling Routines]]

Latest revision as of 17:08, 14 October 2014

needs(code_samples);

Function Syntax

boolean find(matcher pattern )

  • pattern is the matcher to search

Finds the next instance of the pattern or returns false if no more matches exist. Note that a single instance of a pattern may contain any number of capturing groups.

See Also

create_matcher() | group() | group_count() | group_string()