End: Difference between revisions

From Kolmafia
Jump to navigation Jump to search
imported>Bale
Created page with '{{ #vardefine:name|end}}{{ #vardefine:return_type|int}}{{ FunctionPage| name={{#var:name}}| function_category=String Handling Routines| function1={{Function| name={{#var:name}}…'
 
imported>Bale
mNo edit summary
 
Line 5: Line 5:
FunctionPage|
FunctionPage|
name={{#var:name}}|
name={{#var:name}}|
function_category=String Handling Routines|


function1={{Function|
function1={{Function|
Line 34: Line 33:
see_also={{SeeAlso|start}}|
see_also={{SeeAlso|start}}|
}}
}}
[[Category:String Handling Routines]]

Latest revision as of 05:15, 22 May 2010

needs(code_samples);

Function Syntax

int end(matcher pattern )

  • pattern is the regular expression to use

int end(matcher pattern ,int group )

  • pattern is the regular expression to use
  • group is the number of the capturing group

Returns the index after the last character matched by the specified capturing group, or if no group is specified, it returns the index after the last group found.

If the match was successful, but the group did not match anything, then it returns -1.

See Also

start()