_Added in 1.9.0_ *$regml([name], N)* Returns the Nth [[Scripting_Regex|regular expression]] match from [[$regex]], [[$regsub]], [[$regsubex]] or from an [[Scripting_Events|event]]. *Parameters* [name] - A named [[Scripting_Regex|regular expression]], if not defined result from the last [[Scripting_Regex|regular expression]] is returned. (optional) N - If N = 0, number of matches, otherwise the Nth match. *Example*
; 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)

on $*:TEXT:/Hello/g:*:echo -ag found $regml(0) matches, first match was $regml(1)