Operators

is not exactly

Supported By

Syntax

expression is not exactly expression

Description

The is not exactly operator evaluates to false if the given values have the same type and are identical. Otherwise, it evaluates to true.

Note

String comparison with the is not exactly operator is case-sensitive. For case-insensitive comparison, use the != or ne operator.

Synonyms

isn't exactly, !==, ≠≠≠

See Also

!=, ne