If searching source code or cursor is positioned after the a in the word Call.
searching text in multiple documents, this Clicking Find Next would find the second l in
regular expression only finds the search Call, but clicking Next again would not find the
string if it is at the beginning of the document. l in Ishmael because the character immediately
following the cursor is not an l. If searching
source code, ^< matches the opening < in the
HTML statement, assuming
the < is the first character in the document.
$ End of a document d$ matches the final d in Be afraid. Be very
afraid if that is the last character in the
document.
\b A word boundary, such as a space or \btext matches textbook but not SimpleText.
carriage return.
\B A nonword boundary inside a word. \Btext matches SimpleText but not textbook.
* The preceding character zero or more times. b*c matches BBC and the cold.
In the first example, both B??™s and the C match
because the expression b*c causes
Dreamweaver to look for any number of b??™s
followed by a c. In the second example, only the
c matches because b* means to search for zero
or more instances of the b.
+ The preceding character one or more times. b+c matches BBC but not cold.
? The preceding character zero or one time.
Pages:
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569