﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2621	Problem comparing strings	diegomainster@…		"Hello, in version 3.3.10.2, I have to put the strings to be compared between parentheses, I think it's a bug, because in version 3.3.8.1, I do not have to do that. This problem only occurs when using the ""Not"".

{{{
$str = 'TEXT'

If Not StringLeft($str, 2) = 'M_' Then
	MsgBox(0, 'without brackets', 'OK')
Else
	MsgBox(16, 'without brackets', 'Error')
EndIf

If Not (StringLeft($str, 2) = 'M_') Then ; if I put in brackets, compare properly
	MsgBox(0, 'with brackets', 'OK')
Else
	MsgBox(16, 'with brackets', 'Error')
EndIf
}}}
"	Bug	closed		AutoIt	3.3.10.2	None	No Bug		
