开发者

How to write "\r\n" string in notepad++ using regex?

开发者 https://www.devze.com 2023-01-30 22:34 出处:网络
Using notepad++ and its regex find and repl开发者_高级运维ace mode, how to replace a string by a \"\\r\\n\" string ? I mean, not the new line characters, but the STRING \\r\\n.

Using notepad++ and its regex find and repl开发者_高级运维ace mode, how to replace a string by a "\r\n" string ? I mean, not the new line characters, but the STRING \r\n.

I tried: Find: (.*), Replace: "\r\n"

But no success, it just keeps inserting new line characters with a backslash between them...


Find:

(.*)

Replace all with:

\\r\\n
0

精彩评论

暂无评论...
验证码 换一张
取 消