0

I have below text:

enter image description here

I want to remove all the break line (\n\r) from each long text so it will in one single long text per each line as below:

enter image description here

I have no any idea, searching so far with no answer.

Thank you.

Community
  • 1
  • 1
  • This is a simple replace in Notepad++, there is lots of documentation and help elsewhere. Note that CR is `\r` and LF is `\n` so the question's title and middle paragraph with `\n\r` appear to be wrong. The screenshots appear to be replacing `\n` without a '\r` with a space. If that is the requirement then please describe it clearly in the question. – AdrianHHH Mar 23 '20 at 08:02
  • Hi @AdrianHHH, you was right, it should only remove \n Here my solution: ([0-9]{2})([\/]{1})([0-9]{2})([\/]{1})([0-9]{4}) == 01/02/2020 then replace with: \n \1\2\3\4\5 – Candra Sihombing Mar 23 '20 at 09:14

0 Answers0