getGroupCount: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page GetGroupCount to getGroupCount: Converting page titles to lowercase) |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: text = getGroupCount(id)] | [h: text = getGroupCount(id)] | ||
</ | </syntaxhighlight> | ||
id is the id returned by [[strfind|strfind()]] | id is the id returned by [[strfind|strfind()]] | ||
|example= | |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]] | [[Category:String Function]] |
Latest revision as of 23:59, 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)]