Onetastic Macro Documentation >
>
>
String_GreaterThanOrEqualTo String_GreaterThanOrEqualTo
Returns true if the first string is comes after the second string or compares equal, false otherwise.
Syntax
Bool String_GreaterThanOrEqualTo(
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_GreaterThanOrEqualTo("apple", "banana", false)
String_GreaterThanOrEqualTo("Strawberry", "strawberry", false)
String_GreaterThanOrEqualTo("Strawberry", "strawberry", true)
|