When using string conditions within IAM, short versions of the available comparators can be used instead of the more verbose ones.streqi is the short version of the _______ string condition.
StringEqualsIgnoreCase
StringNotEqualsIgnoreCase
StringLikeStringEquals
StringNotEquals
Explanations:
streqiis the short version ofStringEqualsIgnoreCase, which checks if two strings are equal, ignoring case differences.
StringNotEqualsIgnoreCasechecks if two strings are not equal, ignoring case differences, which is not whatstreqidoes.
StringLikeStringEqualsis not a valid comparator and does not correspond to any of the short versions.
StringNotEqualschecks if two strings are not equal but does not ignore case, which is not the functionality ofstreqi.