每5行合并一次

时间:2018-05-16 02:28:46

标签: notepad++ editing

我需要将每5行合并为1.我有一个wordlist字典,其中包含1000行示例:

line 1
line 2
.
line 1000

我需要每5行合并一次:

line 1 line 2 line 3 line 4 line 5
.
line 996 line 997 line 998 line 999 line 1000

1 个答案:

答案 0 :(得分:0)

  • 控制 + ħ
  • 找到:^(.+)\R(.+)\R(.+)\R(.+)\R
  • 替换为:$1 $2 $3 $4
  • 检查环绕
  • 检查正则表达式
  • 请勿检查. matches newline
  • 全部替换

<强>解释

^       : beginning of line
(.+)    : group 1, 1 or more any character 
\R      : any kind of line break
        : same pattern occurs 4 times.

<强>替换

$1      : content of group 1
        : a space
        : same for other groups