Onetastic Macro Documentation >
>
>
String_GreaterThan String_GreaterThan
Returns true if the first string is comes after the second string, false otherwise.
Syntax
Bool String_GreaterThan(
String first,
String second,
Bool ignorecase)
Parameters
- String first
- First string to compare.
- String second
- Second string to compare.
- Bool ignorecase
- Ignores the case of the strings if set to true.
Examples
String_GreaterThan("apple", "banana", false)
String_GreaterThan("strawberry", "Strawberry", false)
String_GreaterThan("strawberry", "Strawberry", true)
|