is not in | ||||||||||
Type | operator | |||||||||
Dictionary | LCS | |||||||||
Library | LiveCode Script | |||||||||
Syntax |
| |||||||||
Summary | Compares two strings and evaluates to true if the second does not contain the first, false if it does. | |||||||||
Introduced | 1.0 | |||||||||
OS | mac, windows, linux, ios, android | |||||||||
Platforms | desktop, server, mobile | |||||||||
Parameters |
| |||||||||
Example |
| |||||||||
Related | Keyword: string Glossary: evaluate, string, operator Operator: contains, is in | |||||||||
Description | Use the is not in operator to find out whether a string does not contain a substring. The expression firstString is not in secondString is equivalent to
The is not in operator is the logical inverse of the is in operator. When one is true, the other is false. | |||||||||
Tags | text processing |