forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreater-than.lcdoc
More file actions
39 lines (23 loc) · 1.97 KB
/
Copy pathgreater-than.lcdoc
File metadata and controls
39 lines (23 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Name: >
Type: operator
Syntax: <value1> > value2
Summary: Compares two <value(glossary)|values> and <return|returns> true if the first <value(function)> is greater than the second <value(function)>, false otherwise.
Introduced: 1.0
OS: mac,windows,linux,ios,android
Platforms: desktop,server,web,mobile
Example:
1 > 0 -- evaluates to true
Example:
2 > -15 -- evaluates to true
Example:
repeat while counter > 0
Parameters:
value1: The operands value1 and value2 can be numbers, literal strings of characters (delimited with double quotes), or any sources of value.
Description:
Use the <>> (greater than) <operator> to compare two numbers or to compare the alphabetical order of two <string(glossary)|strings>.
When comparing strings, the <operator> compares the two <value(glossary)|values> <character> by <character>, using the <ASCII|ASCII value> of each <character>. For example, "a" comes before "z" in the <ASCII> <character set>, so "z" > "a" and "az" > "ab".
If the strings are of different lengths, so that the trailing characters in one <string(keyword)> are compared to missing <characters> in the other, the missing <characters> are considered to have lower <value(function)> than any <character>. For example, "DEF" > "DE".
If the two values are equal, value1 > value2 evaluates to false.
If the <caseSensitive> <property> is true, the comparison between two <string(glossary)|strings> treats uppercase letters as coming before lowercase letters, so "a" > "A". If the <caseSensitive> <property> is false, the comparison is not <case-sensitive>, so "a" is considered equivalent to "A".
References: caseSensitive (property), >= (operator), <> (operator), < (operator), string (keyword), character (keyword), characters (keyword), max (function), value (function), property (glossary), ASCII (glossary), value (glossary), return (glossary), operator (glossary), string (glossary), character set (glossary), case-sensitive (glossary)
Tags: math