notepad ++ line combine [fechado]
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
- 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):
O que significa um erro “Não é possível encontrar o símbolo” ou “Não é possível resolver o símbolo”?
Christopher Nolan uma vez se arrependeu de ter lido o 'roteiro de Pulp Fiction' de Quentin Tarantino