forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind.lcdoc
More file actions
147 lines (114 loc) · 6.29 KB
/
find.lcdoc
File metadata and controls
147 lines (114 loc) · 6.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
Name: find
Type: command
Syntax: find [<form>] <textToFind> [in <field>]
Syntax: find empty
Summary:
Searches the <field|fields> of the <current stack>.
Introduced: 1.0
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
find "heart"
Example:
find string "beat must go on" in field "Quotes"
Parameters:
form (enum):
If no <form> is specified, the normal form is used.
- normal: Find each word in textToFind, at start of the field's words
- characters, character, chars, char: Find each word in textToFind,
anywhere in the field's words
- words, word: Find each word in textToFind, as complete words
- whole: Find the whole of textToFind, as a sequence of complete words
- string: Find the whole of textToFind, anywhere
textToFind (string):
field:
Any expression that evaluates to a field reference. If the field is not
specified, the find command searches all the fields in the current stack
(except fields whose dontSearch property is set to true).
The result:
When the search is successful, the card containing the text appears and
a box is drawn around the found text. If the text is not found in the
stack, the result <function(control structure)>
<return(glossary)|returns> "Not found".
Description:
Use the <find> <command> to search for text.
The <find> <command> starts searching after the previously-found text
(if there was a previous <find> <command>) or at the beginning of the
first <field(keyword)> on the <current card> (if not).
The six forms of the <find> command search in different ways. The find
normal, find chars, and find words forms search for each word in the
<textToFind>, but the <words> don't have to be together to be found;
they only have to all appear on the same <card(keyword)>. <The> find
words and find wholeforms look for complete words only. The find string
and find whole forms search for the <textToFind> as a unit.
The find normal form looks for each word in the <textToFind> at the
beginning of a <word>. For example, find "ring bell" finds "ringing" and
"belltower", but not "bring" or "Campbell". All the words you specify
must be in <field(object)|fields> on the <card(keyword)>, but they don't
need to be in the same order, or even in the same <field(keyword)>.
The find chars form looks for each word in the <textToFind>, in any part
of a <word>. Unlike the find normal form, the find chars form doesn't
require that the words in the <textToFind> be found at the start of a
<word> on the <card(keyword)>. For example, find chars "ring bell" finds
"bring", "ringing", "belltower", and "Campbell". As with the find normal
form, all the words must be somewhere on the <card(keyword)>, but they
don't need to be in the same order, or in the same <field(keyword)>.
The find words form looks for each word in the <textToFind>. All the
<words> must be complete <words>, not parts of <words>. For example,
find words "ring bell" finds "ring" and "bell", but not "ringing",
"bring", "belltower", or "Campbell". As with the find normal and find
chars forms, all the words must be somewhere on the <card(keyword)>, but
they don't need to be in the same order, or in the same
<field(keyword)>.
The find string form looks for the entire <textToFind> as a unit. Unlike
the find normal, find chars, and find words forms, the find string form
requires that the <textToFind> be found exactly: the <words> must be in
the same order and in the same <field(keyword)>, and not separated by
other <words>. For example, find string "ring bell" finds "ring bell"
and "bring belltower", but not "ring the bell" (extra word between
"ring" and "bell" ), "Ringbell Street" (no space between "ring" and
"bell" ), or "bell ringer" (words are in the wrong order).
The find whole form looks for the entire <textToFind> as a unit. Like
the find words form (and unlike the find string form), the find whole
form requires that each word in the <textToFind> be found as a whole
<word>, not part of a <word>. For example, find whole "ring bell" finds
"ring bell", but not "bring belltower" (the "ring" and "bell" are parts
of <words>, not whole <words>), "ring the bell" (extra word between
"ring" and "bell" ), "Ringbell Street" (no space between "ring" and
"bell" ), or "bell ringer" (words are in the wrong order).
>*Note:* Because the find normal, find words, and find whole forms
> search for words or portions of <words>, they cannot find a <string>
> containing a space. The find string form can find a string containing
> a space, but cannot find a <string> that contains a <return(constant)>
> <character>.
The find empty form of the <find> <command> removes the box from the
last <word> found and <reset|resets> the <find> <command>, so that the
next search starts from the beginning of the <current card>, rather than
the location of the next find. Going to another <card(keyword)> also
<reset|resets> the <find> <command>.
The setting of the <caseSensitive> <property> determines whether the
search considers uppercase and lowercase characters to be equivalent.
>*Note:* The search does not consider characters that differ by a
> diacritical mark to be equivalent. For example, find "mére" will not
> find the word "mere".
Usually, the <offset> and <matchText> <function(glossary)|functions> are
faster than the <find> <command>. But unlike these
<function(glossary)|functions>, the <find> <command> can search all the
<field(object)|fields> of a <stack> at once, instead of one <container>
at a time.
>*Tip:* To perform a batch search, set the <mark> <property> of all
> <card(object)|cards> where a match is found by using the mark cards by
> finding form of the <mark> <command>.
References: replace (command), unmark (command), sort (command),
mark (command), return (constant), function (control structure),
foundChunk (function), foundField (function), offset (function),
matchText (function), foundText (function), foundLine (function),
foundLoc (function), property (glossary), current card (glossary),
reset (glossary), return (glossary), container (glossary),
function (glossary), command (glossary), current stack (glossary),
normal (keyword), whole (keyword), characters (keyword), string (keyword),
character (keyword), the (keyword), words (keyword), word (keyword),
card (keyword), field (keyword), field (object), stack (object),
card (object), caseSensitive (property), dontSearch (property),
mark (property)
Tags: database