【发布时间】:2011-12-24 13:57:35
【问题描述】:
我想在 Notepad++ 中对文件进行批量逐行替换,如下所示:
This is my line of text that I would like to replace
到
"This is my line of text that I would like to replace" +
我尝试了以下方法:
查找:^$ 替换:"\1" +
查找:^()$ 替换:"\1" +
查找:(^$) 替换:"\1" +
有什么提示吗?提前致谢!
【问题讨论】: