====== StrIEquals ====== {{tag>string}} ''bool StrIEquals(str a, str b)'' ===== Description ===== Returns true if two strings are equal. Case-insensitive. For case-sensitive version, see [[StrEquals]]. Shorthand for ''!StrICmp(a, b)''. ===== Examples ===== StrIEquals("abc", "abc") -> true StrIEquals("abc", "ab") -> false StrIEquals("Abc", "abc") -> true