getFindCount: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(10 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
= | {{MacroFunction | ||
|name=getFindCount | |||
|version=1.3b48 | |||
|description=Returns the number of times that [[strfind| strfind()]] was able to match the input string. | |||
|usage= | |||
<syntaxhighlight lang="mtmacro" line> | |||
getFindCount(id) | |||
</syntaxhighlight> | |||
The id is the id value returned by [[strfind|strfind()]]. | |||
[ | |||
|example= | |||
<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: getFindCount(id)] | [r: getFindCount(id)] | ||
</ | </syntaxhighlight> | ||
Returns 2. | Returns 2. | ||
}} | |||
[[Category:String Function]] |
Latest revision as of 23:59, 24 March 2023
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)]