I need to reverse the order of selected lines. Any suggestions?
Thanks.
reverse selected lines
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
Re: reverse selected lines
Replace all (reg exp)
^
with
\i\t
Sort (F9) First key From:1, Length:10, Descending, Numeric
Replace all (reg exp)
^[[:digit:]]+\t
with
(blank)
voila
could be made a macro I guess
^
with
\i\t
Sort (F9) First key From:1, Length:10, Descending, Numeric
Replace all (reg exp)
^[[:digit:]]+\t
with
(blank)
voila
could be made a macro I guess
-
- Posts: 7
- Joined: Wed Sep 03, 2008 9:34 am
Re: reverse selected lines
So frigging clever!Ed wrote:Replace all (reg exp)
^
with
\i\t
Sort (F9) First key From:1, Length:10, Descending, Numeric
Replace all (reg exp)
^[[:digit:]]+\t
with
(blank)
voila
could be made a macro I guess
Thanks a lot, it really helped.