i also check these, i use gambas2-2.21 rev3289 updated today (10/11/2010
dd/mm/yyyy).

PRINT "abc" < "abc"  'false
PRINT "abc" < "aBc"  'false
PRINT "ABC" < "abc"  'true

are these correct?
in http://gambasdoc.org/help/cat/stringop says
Returns if String1 is strictly lower than String2.

PRINT "ABC" < "abc"  'true

is this correct? Lower means lowercase not capital, is it?
If so "ABC" is greater than "abc".

Also
PRINT "abc" > "abc"  'false
PRINT "abc" > "aBc"  'true
PRINT "ABC" > "abc"  'false

PRINT "abc" <= "abc"  'true
PRINT "abc" <= "aBc"  'false
PRINT "ABC" <= "abc"  'true

PRINT "abc" >= "abc"  'true
PRINT "abc" >= "aBc"  'true
PRINT "ABC" >= "abc"  'false

-- 
Regards,
Demosthenes Koptsis.


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to