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
精彩评论