getGroupCount: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
= | {{MacroFunction | ||
|name=getGroupCount | |||
|version=1.3b48 | |||
|description=Returns the number of capture groups for the match performed by [[strfind|strfind()]]. | |||
|usage= | |||
<syntaxhighlight lang="mtmacro" line> | |||
< | |||
[h: text = getGroupCount(id)] | [h: text = getGroupCount(id)] | ||
</ | </syntaxhighlight> | ||
id is the id returned by [[ | id is the id returned by [[strfind|strfind()]] | ||
|example= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: id = strfind("this is a test", "(\\S+)\\s(\\S+)\\s*")] | [h: id = strfind("this is a test", "(\\S+)\\s(\\S+)\\s*")] | ||
[r: getGroupCount(id)] | [r: getGroupCount(id)] | ||
</ | </syntaxhighlight> | ||
Returns 2. | Returns 2. | ||
}} | |||
[[Category:String Function]] |
Latest revision as of 18:35, 14 March 2023
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)]