Isso pode ser feito com a seguinte expressão regular, assumindo que seus números são apenas números (ou seja, sem vírgulas, pontos decimais):
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
1111 2222 3333 4444 5555 6666
CTRL-H para ir para Localizar e substituir
Find what: .*\s(\d+\s\d+\s\d+)$
Replace with:
Search Mode: Regular expression
Uma explicação do achado regex:
.* = match anything, repeating
\s = match single whitespace
( = start capture group
\d+ = match one or more numerals
\s = match single whitespace
\d+ = match one or more numerals
\s = match single whitespace
\d+ = match one or more numerals
) = end capture group
$ = match end of line
E a caixa de substituição:
= capture group 1 from the prior regex match (everything matched between the ( and the ))
Isso levou alguns segundos para substituir e deixa você com as três últimas colunas de números, ou seja,
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
4444 5555 6666
Screenshot da caixa de substituição do NPP: