Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
Find Command - Regular Expressions (3 of 3)
Use the Find command to search for the next occurrence
of a text string in the active window. You can request
■ A whole-word match (a-z, A-Z, 0-9, $, underscore)
■ An exact (case-sensitive) match
■ A general pattern search using regular expressions
You can bypass the menu with the following two
shortcut keys:
■ CTRL+QF to call the Find command
■ CTRL+\ to find the currently highlighted text
To find and replace text, use the Change command.
After selecting Find from the Search menu
1. Type in the text to search for
2. Select options from the list
3. Press ENTER or select <OK> to begin searching, or
select <Cancel> to return to QuickPascal
┌────────────────────────────────┐
│Find What: [▒▒▒▒▒▒▒▒▒▒▒▒▒] ◄────│─ ■ Type text or
│ │ pattern to find
│ [ ] Whole Word ◄───────────────│─ ■ Find whole words
│ [ ] Match Upper/Lowercase ◄────│─ ■ Find exact case
│ [ ] Regular Expression ◄───────│─ ■ Find text pattern
└────────────────────────────────┘
▲
└───────────── Select search criteria
Period . Matches any single character
Caret ^ Matches text at the beginning of a line
Dollar sign $ Matches text at the end of a line (must
appear at the end of the text)
Asterisk * Matches zero or more repetitions of the
character preceding the asterisk
Backslash \ Interprets the next character literally
Brackets [ ] Matches any of the characters specified
within the brackets --including
Caret ^ Matches any character EXCEPT those
within the brackets; must be the
first character within the brackets
Dash - Matches characters in the ASCII order
between the characters on either
side, inclusive