Page 1 of 1
Find a ( at begining of line
Posted: Fri Mar 28, 2008 10:24 pm
by jpg
I want to delete all lines that begins with (B.O.
Thanks
Posted: Sat Mar 29, 2008 1:46 am
by Bob Hansen
Edit/Find/Mark alll the lines,
Find: ^\(B.O.
Edit/Delete/Bookmarked lines.
Use the following settings:
-----------------------------------------
[X] Regular expression
Replace All
-----------------------------------------
Configure | Preferences | Editor
[X] Use POSIX regular expression syntax
-----------------------------------------
Posted: Sat Mar 29, 2008 4:21 pm
by MudGuard
Bob Hansen wrote:Edit/Find/Mark alll the lines,
Find: ^\(B.O.
Dangerous - This also finds lines starting with (BLOB.
^\(B\.O\.
is better.
And I would use
^\(B\.O\..*\n
and replace with nothing (instead of Mark all, Delete bookmarked Lines)