Project

General

Profile

$regml » History » Version 3

Per Amundsen, 08/13/2015 10:39 AM

1 1 Per Amundsen
_Added in 1.9.0_
2
3
*$regml([name], N)*
4
5
Returns the Nth [[Scripting_Regex|regular expression]] match from [[$regex]], [[$regsub]], [[$regsubex]] or from an [[Scripting_Events|event]].
6
7
*Parameters*
8
9
[name] - A named [[Scripting_Regex|regular expression]], if not defined result from the last [[Scripting_Regex|regular expression]] is returned. (optional)
10
N - If N = 0, number of matches, otherwise the Nth match.
11
12
*Example*
13
14
<pre>
15
; Search the text for the pattern '(hello)' and print the result.
16
//echo -ag Number of matches: $regex(Hello World, /(Hello)/) match 1 is: $regml(1)
17
18 3 Per Amundsen
; Prefix an event with '$' allows the use of a regular expression in the 'matchtext' field which will fill $regml with the result.
19 1 Per Amundsen
on $*:TEXT:/Hello/g:*:echo -ag found $regml(0) matches, first match was $regml(1)
20
</pre>