ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


functions:striequals

Table of Contents

StrIEquals

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
functions/striequals.txt · Last modified: 2017/07/09 15:33 by korshun