getFindCount: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:getFindCount moved to getFindCount) |
Verisimilar (talk | contribs) m (Added version.) |
||
Line 1: | Line 1: | ||
{{MacroFunction | {{MacroFunction | ||
|name=getFindCount | |name=getFindCount | ||
|version=1.3b48 | |||
|description=Returns the number of times that [[strfind| strfind()]] was able to match the input string. | |description=Returns the number of times that [[strfind| strfind()]] was able to match the input string. | ||
|usage= | |usage= | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
getFindCount(id) | |||
</source> | </source> | ||
Revision as of 11:51, 10 March 2009
getFindCount() Function
• Introduced in version 1.3b48
Returns the number of times that strfind() was able to match the input string.
Usage
getFindCount(id)
The id is the id value returned by strfind().
Example
[h: id = strfind("this is a test", "(\\S+)\\s+(\\S+)\\s*")]
[r: getFindCount(id)]