notepad ++ 줄 결합 [닫힘]

Aug 15 2020

이 라인 주문이 있습니다.

129
12
2020
5424180606943758

우리는 이런 식이어야합니다

5424180606943758|12|2020|129

메모장 ++ 또는 onoter 앱에서이 작업을 수행하는 방법

답변

Toto Aug 15 2020 at 19:28
  • Ctrl+H
  • 무엇을 찾다: (\d+)\R(\d+)\R(\d+)\R(\d+)\R?
  • 다음으로 교체 : $4|$3|$2|$1
  • 확인
  • 정규식 확인
  • Replace all

설명:

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

바꿔 놓음:

$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

스크린 샷 (이전) :

스크린 샷 (이후) :