﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2862	StringRegExp $STR_REGEXPARRAYGLOBALFULLMATCH option regress	anonymous	Jon	"In release 3.3.12.0 $STR_REGEXPARRAYGLOBALFULLMATCH work correct, but in 3.3.13.18 always return the last match.

So the 4 example for function do not work.
Or this code demonstrate error:
{{{
#include <array.au3>
$data = 'a1,b2,c3,d4'
$out = StringRegExp($data,'\w(\d)',4)
For $i = 0 To UBound($out) - 1
	$match = $out[$i]
	_ArrayDisplay($match)
Next
}}}

In 3.3.12.0 arraydisplay:
a1 1
b2 2
c3 3
b4 4

In 3.3.13.18
b4 4
b4 4
b4 4
b4 4"	Bug	closed	3.3.13.19	AutoIt	3.3.12.0	None	Fixed		
