- A -
- B -
Bad Sectors settings
Broken File Name
Rename and change all invalid symbols to:
Broken File Name options
Button
Buttons
- C -
Contact information and technical support
Context menu
Delete All Scanned Information
Find Previous Versions of the File
Find Template Signature Previous
Create menu
- D -
Data Copy in Text/hexadecimal viewer
Dialog boxes
Drive menu
- E -
Edit menu
Find Template Signature Previous
Exclusive Region options
- F -
File Already Exists
File mask options
File menu
File Systems settings
Default encoding for Ext2/Ext3/Ext4/UFS volumes
Default encoding for HFS volumes
File Types
Find options
Finding Previous File Versions
- H -
Help menu
- I -
Image options
Compressed image (R-Drive Image compatible)
- L -
Log settings
Maximum messages in the Event Log
- M -
Main settings
Reset all hidden notifications
Messages
Double-click a logical disk...
- O -
Opening several disks/partitions in one tab
- P -
Panels
Panes
Properties tab
- R -
Recover options
Condense successful restoration events:
Recover alternative data streams:
Region options
- S -
Scan options
Search options
Settings
- T -
Tabs
Technical Information and Troubleshooting
Tools menu
- V -
Various Disk and Volume Managers
View menu
Regular expression is a notation for patterns of text, as opposed to exact strings of characters. The notation uses literal characters and metacharacters. Every character which does not have special meaning in the regular-expression syntax is a literal character and matches an occurrence of that character. For example, letters and numbers are literal characters. A metacharacter is a symbol with special meaning (an operator or delimiter) in the regular-expression syntax.
. |
Wildcard: any character |
* |
Repeat: zero or more occurrences of previous character or class |
^ |
Line position: beginning of line |
$ |
Line position: end of line |
[class] |
Character class: any character in the set |
[^class] |
Inverse class: any character not in the set |
[x-y] |
Range: any characters within the specified range |
\x |
Escape: literal use of metacharacter x |
\<xyz |
Word position: beginning of the word |
xyz\> |
Word position: end of the word |
For example, the following regular expression .* matches any string of characters, ^a matches any string beginning with character a.