Hi, i dont understand the following result. PRINT "abc" == "ab" 'true PRINT "abc" == "abc" 'false in http://gambasdoc.org/help/cat/stringop says Returns if two strings are equal. The comparison is case unsensitive. 1) why "abc" and "ab" says they are equal? 2) and "abc" == "abc" are not?