我在Notepad ++和正则表达式中需要一些帮助。
示例如何看待当下:
aaaaa
bbbb
cccccc
我希望如何(删除断点并用逗号和空格替换它们):
aaaaa, bbbb, cccccc
我被告知我可以通过选中“正则表达式”和“匹配换行符”来完成;
Find what: "[\r\n]+"
Replace with:","
-> Replace All
但是我在“替换”窗口中找不到“匹配换行符”。我需要任何插件吗?我的Notepad ++的版本是5.7(UNICODE)。
答案 0 :(得分:33)
使用Extended
搜索模式,将\r\n
替换为,
答案 1 :(得分:7)
使用notepad++
只需从end of line to the start of next line
中选择,然后按CTRL + H,
您将获得要替换的文本,然后将其替换为,
或您想要的字符