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