forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathis-not-among.lcdoc
More file actions
43 lines (27 loc) · 1.21 KB
/
is-not-among.lcdoc
File metadata and controls
43 lines (27 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Name: is not among
Type: operator
Syntax: <valueToFind> is not among the {paragraphs | sentences | lines | items | words | segments | trueWords | tokens | codePoints | codeUnits | bytes} of <stringToSearch>
Summary:
Evaluates to true if a chunk is not equal to any of the chunks in a
string, false otherwise.
Introduced: 1.0
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
"a" is not among the words of "human" -- evaluates to true
Parameters:
valueToFind (string):
stringToSearch (string):
A string is an expression that evaluates to a string.
Description:
Use the <is not among> operator to find out whether a string does not exist as
an entire word, item, or line of another string.
The <valueToFind> must be a single word, item, or line (whichever chunk
type you have specified). If you specify a string containing more than
one chunk, the <is not among> operator evaluates to true, even if all
the chunks are in the <stringToSearch>.
The <is not among> operator is the logical inverse of the is among
operator. When one is true, the other is false.
References: characters (keyword), is among the keys of (operator),
contains (operator), is among (operator)
Tags: text processing