gpeClearMatchGroups
gpeClearMatchGroups(u_sandbox[?verbose{t|nil} ] ) =>t/nil
Description
Removes all the matched groups from the specified Modgen sandbox object.
Arguments
Value Returned
|
All the matched groups were removed from the Modgen sandbox object. |
|
Example
In the following example, a matched group mg1 of match type widenFirst is created and then added to a Modgen sandbox object. gpeClearMatchGroups is then used to remove all the matched groups from the Modgen sandbox object.
mg1 = gpeCreateMatchGroupEntry(0 ?twigMatchType "widenFirst")
gpeAddMatchGroups(sandbox list(mg1))
gpeClearMatchGroups(sandbox)
Return to top