在Notepad++中,在行尾添加每一行的文字

in Notepad ++, add the text of each line at the end of the line

Notepad++中如何:

Add all characters at the end of each line after adding the equal sign "=".

对于示例

This is a text  

This is a text = This is a text

正则表达式:

(.+)

替换字符串:

 = 

DEMO

(.+)\K

试试这个。替换为 =

See Demo