Start: Difference between revisions
Jump to navigation
Jump to search
imported>Bale Created page with '{{ #vardefine:name|start}}{{ #vardefine:return_type|int}}{{ FunctionPage| name={{#var:name}}| function_category=String Handling Routines| function1={{Function| name={{#var:name…' |
imported>Bale No edit summary |
||
Line 27: | Line 27: | ||
}}| | }}| | ||
function_description=Returns the starting index of the specified capturing group, or if no {{pspan|group}} is specified, it returns the index of the last group found.| | function_description=Returns the starting index of the first character matched by the specified capturing group, or if no {{pspan|group}} is specified, it returns the index of the last group found.</p> | ||
<p>If the match was successful, but the group did not match anything, then it returns -1.| | |||
needscode=yes| | needscode=yes| |
Revision as of 05:23, 11 May 2010
needs(code_samples);
Function Syntax
- pattern is the regular expression to use
int start(matcher pattern ,int group )
- pattern is the regular expression to use
- group is the number of the capturing group
Returns the starting index of the first character matched by the specified capturing group, or if no group is specified, it returns the index of the last group found.
If the match was successful, but the group did not match anything, then it returns -1.
See Also