getGroupCount: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page getGroupCount to GetGroupCount without leaving a redirect: Converting page title to first-letter uppercase)
m (Conversion script moved page GetGroupCount to getGroupCount: Converting page titles to lowercase)
(No difference)

Revision as of 22:54, 9 February 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.