Is there a way to suppress the filename and linenumber in the search results window while using find in files. Thanks in advance.
Mover
Search Window--Question
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
- s_reynisson
- Posts: 939
- Joined: Tue May 06, 2003 1:59 pm
search window...suppression of filename and linenumber
Thanks..will try that approach and report.
mover
mover
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
Using POSIX regular expression syntax:
Using Search | Replace... :Configuration | Preferences | Editor
[X] Use POSIX regular expression syntax
In the "Find" regular expression replace the underscore at the end with a space. Leave the replacement expression empty.Find what: [^(]+\([0-9]+\):_
Replace with:
[X] Regular expression
Thanks ben...not very familiar with posix syntax...
the non-posix compliant regexp ^sow28poc.txt([0-9]+):_
where the underscore is a space worked fine for me.
Now i need to only learn how to make the entire sequence of double clicking read in the status line (thanks bveldkamp) and running the find replace into a macro:-)
Thanks once again for all the help.
mover
the non-posix compliant regexp ^sow28poc.txt([0-9]+):_
where the underscore is a space worked fine for me.
Now i need to only learn how to make the entire sequence of double clicking read in the status line (thanks bveldkamp) and running the find replace into a macro:-)
Thanks once again for all the help.
mover