รวมบรรทัด notepad ++ [ปิด]
เรามีคำสั่งทางไลน์นี้
129
12
2020
5424180606943758
เราต้องเป็นแบบนี้
5424180606943758|12|2020|129
วิธีทำใน notepad ++ หรือในแอป onoter
คำตอบ
Toto
- 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
ภาพหน้าจอ (ก่อนหน้า):
ภาพหน้าจอ (หลัง):