getGroupCount

From RPTools Wiki
Revision as of 20:56, 1 December 2008 by Craig (talk | contribs) (New page: ==Function getGroupCount== {{ProposedChange}} Returns the number of capture groups for the match performed by strfind(). ===Usage=== <source lang="mtmacro" l...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function getGroupCount

 Note: This refers to a proposed change that has not been implemented in the main code base yet.

Returns the number of capture groups for the match performed by strfind().

Usage

[h: text = getGroupCount(id)]

id is the id returned by strfind()

Examples

[h: id = strfind("this is a test", "(\\S+)\\s(\\S+)\\s*")]
[r: getGroupCount(id)]

Returns 2.