getFindCount: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Conversion script moved page GetFindCount to getFindCount: Converting page titles to lowercase)
m (Text replacement - "source>" to "syntaxhighlight>")
Line 7: Line 7:
<source lang="mtmacro" line>
<source lang="mtmacro" line>
getFindCount(id)
getFindCount(id)
</source>
</syntaxhighlight>


The id is the id value returned by [[Macros:Functions:strfind| strfind()]].
The id is the id value returned by [[Macros:Functions:strfind| strfind()]].
Line 15: Line 15:
[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)]
</source>
</syntaxhighlight>
Returns 2.
Returns 2.
}}
}}
[[Category:String Function]]
[[Category:String Function]]

Revision as of 18:13, 14 March 2023

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.