$regex » History » Revision 7
Revision 6 (Per Amundsen, 08/13/2015 10:38 AM) → Revision 7/10 (Per Amundsen, 01/16/2019 09:16 PM)
_Added in 1.9.0_
*$regex([name], text, re)*
Returns the number of strings in text that matched the [[Scripting_Regex|regular expression]].
_See also [[$regsubex]], [[$regml]], [[$regmlex]]._
*Parameters*
[name] - Name of the search, which can later be referenced using [[$regml]]. (optional)
text - The text to search.
re - The [[Scripting_Regex|regular expression]] to perform.
*Example*
<pre>
; Search the text for the pattern '(hello)' and print the result.
//echo -ag Number of matches: $regex(Hello World, /(Hello)/) match 1 is: $regml(1)
</pre>