User manual
UM0036 Your STVD graphical environment
Doc ID 7705 Rev 11 55/385
The results of your search are displayed in the Output window, by default in the Find in
Files 1 tab, or in the Find in Files 2 tab if you select the option Output to pane 2.
Figure 34. Find in Files tabs
Go to
This command opens the Go To window, permitting a line in a source file to be defined as
the target for the Go To action.
Figure 35. Go To window
Regular expressions
Regular expressions make it possible to search ASCII text for patterns of characters instead
of literal strings of characters. For example, they allow you to search for all expressions
consisting of a character followed by any character in a defined set, or to search only for
occurrences of a string of characters at the end of a line.
Checking the Regular Expressions checkbox in the Find, Replace or Find in files windows
enables the use of meta characters for regular expressions such as those listed in Ta bl e 16 .
Table 16. Regular expressions
Meta
character
Use Example
[ ] Find any characters in the defined set. X[A-B] finds any occurrences of XA or XB
[^ ]
Find characters except those in the
defined set
X[^C-Z] finds any occurrences of XA or XB and excludes
combinations with any other letters (XC, XD, ... XZ)
. Any character
X..[A-B] finds any occurrences of X followed by any two
characters and then an A or B (X--A, or X--B where - is
equal to any ASCII character)
+
Matches one or more occurrences of the
specified characters
X[A-B]+ finds any occurrences of X followed by one or
more occurrences of the defined set (XA, XB, XAA, XAB,
XBB, XAAA, XAAB, ...)