In every line I would like to:
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)
This should do the trick. Simply count the characters as you've done and replace with the capture groups and a space.
Find
^.{8}(.{4}).{4}(.{4})(.{1})
Replace (incl. the space after $2
)
$1$2