User manual

Your STVD graphical environment UM0036
56/385 Doc ID 7705 Rev 11
These are just a few of the regular expressions that you might use to search your files. For
more information, you can refer to any reference about Unix regular expressions.
Note: When regular expressions are enabled in the Replace dialog box, they are used in the Find
what field. A regular expression in the Replace with field is treated as a string of ASCII
characters, not as a regular expression.
3.6 Output window
To open the Output window, either click on the Output window icon in the View toolbar
or from the main menu select View>Output Window.
The Output window is opened from the View toolbar or View menu.
Figure 36. Output window
*
Matches zero or more occurrences of the
specified characters
X[A-B]* finds any occurrences of X and X followed by
one or more occurrences of the defined set (X, XA, XB,
XAA, XAB, XBB, XAAA, XAAB, ...)
^
Beginning of line indicator (when it
precedes a search string and is not
enclosed by brackets)
^X[A-B] finds only the occurrences of XA and XB at the
beginning of a line.
$
End of line indicator (except when
preceded by a \)
X[A-B]$ finds only the occurrences of XA and XB at the
end of a line.
\
The meta character following the \ is
treated as an ASCII character
Changing the preceding example to X[A-B]\$ finds all
occurrences of XA$ and XB$.
\<
Restricts the search to the beginnings of
words
\<X[A-B] finds only the occurrences of XA and XB that
are at the beginning of a word (that are followed by other
alpha-numeric characters – XAVIER or XA123)
\> Restricts search to the ends of words
X[A-B]\> finds only the occurrences of XA and XB that
are at the end of a word (that are preceded by other alpha-
numeric characters – MIXA or 123XA)
Table 16. Regular expressions (continued)
Meta
character
Use Example