Learn the basics on how to use vEdit's flexible and powerful search and all the search modes and options that help with searching.
1. Select SEARCH > Search (alt: F2 or Ctrl-F or Toolbar).

2. Enter the search string, the sequence of characters to be located.
3. Select any desired search options. ( Search Modes and Search Options in detail]] )
4. Press Enter or the Next button to search in the forwards direction from the cursor position to the end of the file, or select Previous to search backwards towards the beginning of the file.
Previous search strings can be recalled. In the Windows version, click the recall arrow or press Cursor Down.You can also edit the search string being entered or that you recalled.
The online help accessed by clicking Help or F1 is extensive. It explains how to search for special characters such as “newline”, “null”, control and graphics characters.
Large Files: If the string is not found, VEDIT restores the cursor position. When editing huge (100+ Megabyte) files, this restore is time-consuming. If you set CONFIG > Search options > Restore edit position on error to “2”, the cursor is simply left at the end of the file.
The desired search mode can be selected in the Search dialog box. The initial mode is set by CONFIG > Search options > Default search mode.The default mode is “Pattern matching”.
To search for a “newline”, use “|N” in pattern matching mode, or “\N” in regular expression mode.
To search for control (or other) characters, use “|ddd” in pattern matching mode, or “\dddd” in regular expression mode, where ‘ddd’ is the decimal value of the character. In the DOS version, you can alternatively press [ENTER CTRL] (<Ctrl-Q>) followed by the control character.
Character values can also be entered in hexadecimal using “|Hhh”in pattern matching mode, or “\hhh” in regular expression mode.
To search for a null character (decimal value 000), use “|000” in pattern matching mode, or “\d000” or “\0” in regular expression mode.
The search and replacement strings are limited to 260 characters.
The contents of a text register can be used as the entire search/replace string or as a portion of it. In pattern matching mode, use “|@(r)” to include text register ‘r’ in the search/replace string. In regular expression mode, use “\@(r)”. This permits “variable” search/replace strings.
The “terse” dialog box only displays some options. Immediately press Enter to switch to the full dialog box.
In the terse dialog box, the button [Again] re-uses the previously entered search string. It is often used in conjunction with the [ ] Begin option to restart the search from the beginning of the file, or with the [ ]Prev option to search again in the backwards direction.