getFindCount

From RPTools Wiki
Revision as of 18:13, 14 March 2023 by Taustin (talk | contribs) (Text replacement - "source>" to "syntaxhighlight>")
Jump to navigation Jump to search

getFindCount() Function

Introduced in version 1.3b48
Returns the number of times that strfind() was able to match the input string.

Usage

<source lang="mtmacro" line> getFindCount(id) </syntaxhighlight>

The id is the id value returned by strfind().

Example

<source lang="mtmacro" line>

[h: id = strfind("this is a test", "(\\S+)\\s+(\\S+)\\s*")] [r: getFindCount(id)] </syntaxhighlight>

Returns 2.