String Comparisons

The comparison operators (<, <=, >, >=, == and !=) all compare two strings, returning a boolean value.

String comparisons are done by comparing the ASCII values of each character in one string with the corresponding character in another string. This means that comparisons are case sensitive. Since XJEase uses UTF-8 internally, non-ASCII characters will not be handled particularly intuitively.

These strings are in the order XJEase would sort them: A, AA, B, a, b, bb.