notepad ++ ligne combiner [fermé]

Aug 15 2020

Nous avons cet ordre de ligne

129
12
2020
5424180606943758

nous devons être de cette façon

5424180606943758|12|2020|129

comment faire cela dans notepad ++ ou dans l'application onoter

Réponses

Toto Aug 15 2020 at 19:28
  • Ctrl+H
  • Trouver quoi: (\d+)\R(\d+)\R(\d+)\R(\d+)\R?
  • Remplacer par: $4|$3|$2|$1
  • VÉRIFIER Envelopper
  • CHECK Expression régulière
  • Replace all

Explication:

(\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

Remplacement:

$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

Capture d'écran (avant):

Capture d'écran (après):