In every line I would like to:
- remove char 1-8 (8)
- save char 9-12 (4)
- remove char 13-16 (4)
- save char 17-20 (4)
- replace char 21 (1) with space
- keep the rest of line
and then do it for every line
I have started with:
^.{8}(.{4}).{4}
Is it possible to in oneline or repeat the pattern...
(I use Notepad++ and TextPad)