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