notepad ++ line combine [fechado]

Aug 15 2020

Temos esta ordem de linha

129
12
2020
5424180606943758

nós precisamos ser assim

5424180606943758|12|2020|129

como fazer isso no notepad ++ ou no aplicativo onoter

Respostas

Toto Aug 15 2020 at 19:28
  • Ctrl+H
  • Encontre o que: (\d+)\R(\d+)\R(\d+)\R(\d+)\R?
  • Substituir com: $4|$3|$2|$1
  • CHECK Wrap around
  • CHECK Regular expression
  • Replace all

Explicação:

(\d+)           # group 1, 1 or more digits
\R              # any kind of linebreak
(\d+)           # group 2, 1 or more digits
\R              # any kind of linebreak
(\d+)           # group 3, 1 or more digits
\R              # any kind of linebreak
(\d+)           # group 4, 1 or more digits
\R              # any kind of linebreak, optional

Substituição:

$4 # content of group 4 | # a pipe $3          # content of group 3
|           # a pipe
$2 # content of group 2 | # a pipe $1          # content of group 1

Captura de tela (antes):

Captura de tela (depois):