getFindCount
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.