getGroupCount: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Added version.)
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 5: Line 5:


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: text = getGroupCount(id)]
[h: text = getGroupCount(id)]
</source>
</syntaxhighlight>
id is the id returned by [[strfind|strfind()]]
id is the id returned by [[strfind|strfind()]]
|example=
|example=
<source lang="mtmacro" line>
<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)]
</source>
</syntaxhighlight>
Returns 2.
Returns 2.
}}
}}
[[Category:String Function]]
[[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)]
Returns 2.