Onetastic Macro Documentation >
>
>
String_DoesNotEqual String_DoesNotEqual
Returns true if the given two strings are not equal, false otherwise.
Syntax
Bool String_DoesNotEqual(
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_DoesNotEqual("banana", "banana", false)
String_DoesNotEqual("apple", "orange", false)
String_DoesNotEqual("Strawberry", "strawberry", false)
String_DoesNotEqual("Strawberry", "strawberry", true)
|