﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2090	[:upper:] is not working	Leagnus		"versions 3.3.6.1 till 3.3.8.0

not working:

{{{
#include <Array.au3>
Local $a_a
Local $avArray[5] = [ _
	  ""LED"", _
	  ""IdeaPad"", _
	  ""ProBook"", _
	  ""PSII"", _
	  ""HDD""]
	  
for $i_counter = 1 to ubound($avArray)-1
   $a_a = StringRegExp($avArray[$i_counter], ""[:upper:]+"", 1)	
   if not @error then
	  MsgBox(0, """", $a_a[0])
   Endif
next

}}}

Working: 

{{{
#include <Array.au3>
Local $a_a
Local $avArray[5] = [ _
	  ""LED"", _
	  ""IdeaPad"", _
	  ""ProBook"", _
	  ""PSII"", _
	  ""HDD""]
	  
for $i_counter = 1 to ubound($avArray)-1
   $a_a = StringRegExp($avArray[$i_counter], ""[А-ЯA-Z]+"", 1)
   if not @error then
	  MsgBox(0, """", $a_a[0])
   Endif
next
}}}

"	Bug	closed		AutoIt	3.3.8.0	None	No Bug	regular expressions	
