StringIsGreaterThanString

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Left> > <Right>
Associationscom.livecode.string
Summary

Determines whether Left is greater than Right under a char by char comparison

Parameters
NameTypeDescription
Left

An expression which evaluates to a string.

Right

An expression which evaluates to a string.

Values
NameTypeDescription
return

Returns true if Left is greater than Right.

Description

Left is greater than Right if and only if Left and Right are not equal, and the unicode codepoint of the first char in Left that is not equal to the corresponding char in Right is of greater value.

Tagsstrings