Find/Replace Dialog Box
To open the Find/Replace dialog box, use the Find/Replace action that is
available in the Find menu, on the toolbar, or by pressing
. It is also invoked by the
Find/Replace contextual menu action found in certain views.
- Replace occurrences of target defined in the Find area with a new fragment of text defined in Replace with area.
- Find all the occurrences of a word or string of characters (that can span over multiple lines) in the document you are editing. This operation also takes into account all the whitespaces contained in the fragment you are searching for. The Find/Replace dialog box counts the number of occurrences of the text you are searching for and displays it at the bottom of the dialog box, above the Close button. This number is also displayed in the Results viewResults view after you click the Find All button.
- Press on your keyboard.
- Use the Insert newline contextual menu action.
You can use Perl-like regular expressions syntax to define patterns. A content completion assistance window is available in the Find and Replace with areas to help you edit regular expressions. It is activated every time you type \(backslash key) or on-demand if you press on your keyboard.
The replace operation can bind regular expression capturing groups ($1,
$2
, etc.) from the find pattern.
<tag-name>
start tag and its attributes with the
<new-tag-name>
tag use as Find the expression
<tag-name(\s+)(.*)> and as Replace with the expression
<new-tag-name$1$2>.Find/Replace Dialog Box

The Find/Replace dialog box contains the following options:
- Find text area box
-
This is where you enter the character string to search for. You can search for Unicode characters specified in the
\uNNNN
format. Also, hexadecimal notation (\xNNNN
) and octal notation (\0NNNN
) can be used. In this case you have to select the Regular expression option. For example, to search for a space character you can use the\u0020
code.You can use the
History button to select from a list of the most recently used expressions. Use the
Clear history action from the bottom of the lists to remove these expressions.
- Replace with text area box
-
The character string with which to replace the target. The string for replace can be on a line or on multiple lines. It can contain Perl notation capturing groups, only if the search expression is a regular expression and the Regular expression option is selected.Note:Some regular expressions can indefinitely block the application. If the execution of the regular expression does not end in about 5 seconds, the application displays a dialog box that allows you to interrupt the operation.Tip:Special characters such as newline and tab can be inserted in the Find and Replace with text boxes using dedicated actions in the contextual menu (Insert newline and Insert tab).
Unicode characters in the
\uNNNN
format can also be used in the Replace with area.You can use the
History button to select from a list of the most recently used expressions. Use the
Clear history action from the bottom of the lists to remove these expressions.
- Direction
- Specifies if the search direction is from current position to end of file (Forward) or to start of file (Backward).
- Scope
- Specifies whether the Find/Replace operation is executed over the entire content of the edited document (All option), or over the selected content/lines.
- Options section
-
- Case sensitive
- When selected, the search operation follows the exact letter case of the text entered in the Find field.
- Incremental
- The search operation is started every time you type or delete a letter in the Find text box.
- Wrap around
- When the end of the document is reached, the search operation is continued from the start of the document, until its entire content is covered.
- Whole words only
- Only entire occurrences of a word are included in the search operation. This option is automatically disabled if the Regular expression option is selected.
- Find All Elements link
- Available when editing in Author mode, you can use this link to extend the search scope to XML-specific markup (names and values of both attributes and elements).
- Find button
- Executes a find operation for the next occurrence of the target. It stops after highlighting the find match in the editor panel.
- Replace/Find button
- Executes a replace operation for the target followed by a find operation for the next occurrence.
- Replace button
- Executes a replace operation for the target without going to the next occurrence.
- Find All button
- Executes a find operation and displays all results in the Results viewResults view.
- Replace All button
- Executes a replace operation in the entire scope of the document.
- Replace to End button
- Executes a replace operation starting from current target until the end of the document, in the direction specified by the current selection of the Direction switch (Forward or Backward).