Project

General

Profile

Findtext » History » Version 1

Per Amundsen, 02/10/2014 02:39 PM

1 1 Per Amundsen
_Added in 1.9.2_
2
3
/findtext [-enr] <text>
4
5
This searches active window for the specified text (same as Control+F).
6
7
*Switches*
8
9
-e - Use regular expressions.
10
-n - Search backwards.
11
-r - Use exact match.
12
13
*Parameters*
14
15
<text> - Text to search.
16
17
*Example*
18
19
<pre>
20
;Searches for 'Hello World1'
21
/findtext Hello World!
22
23
;Searches for any text matching 'Hello'
24
/findtext -r .*Hello.*
25
</pre>