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