How to break lines at a specific character in Notepad++?

前端 未结 6 1597
[愿得一人]
[愿得一人] 2021-01-29 20:44

I have a text file containing text like:

[\'22APR2012 23:10\', \'23APR2012 07:10\', 1, 3, 0], [\'22APR2012 23:10\', \'23APR2012 07:20\', 1, 3, 0], [\'22APR2012 2         


        
6条回答
  •  [愿得一人]
    2021-01-29 21:37

    If the text contains \r\n that need to be converted into new lines use the 'Extended' or 'Regular expression' modes and escape the backslash character in 'Find what':

    Find what: \\r\\n

    Replace with: \r\n

提交回复
热议问题