getGroupCount: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:getGroupCount moved to getGroupCount) |
Verisimilar (talk | contribs) m (Added version.) |
||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=getGroupCount | |name=getGroupCount | ||
|version=1.3b48 | |||
|description=Returns the number of capture groups for the match performed by [[strfind|strfind()]]. | |description=Returns the number of capture groups for the match performed by [[strfind|strfind()]]. | ||
Revision as of 11:52, 10 March 2009
getGroupCount() Function
• Introduced in version 1.3b48
Returns the number of capture groups for the match performed by strfind().
Usage
[h: text = getGroupCount(id)]
id is the id returned by strfind()
Example
[h: id = strfind("this is a test", "(\\S+)\\s(\\S+)\\s*")]
[r: getGroupCount(id)]