Delete every other row

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
garytvh
Posts: 1
Joined: Mon Dec 17, 2012 12:39 pm

Delete every other row

Post by garytvh »

How can I delete every other row in a large text file?
ben_josephs
Posts: 2464
Joined: Sun Mar 02, 2003 9:22 pm

Post by ben_josephs »

Use "Posix" regular expression syntax:
Configure | Preferences | Editor

[X] Use POSIX regular expression syntax
Search | Replace... (<F8>):
Find what: (.*)\n.*\n
Replace with: \1\n

[X] Regular expression

Replace All
or, if you want the other ones,
Find what: .*\n(.*)\n
Replace with: \1\n

[X] Regular expression

Replace All
Post Reply