Search code examples
notepad++line-breaks

How to break line after dot in notepad++?


For Example I have a text file like this:

Example sentence1.Example sentence2.Example sentence3.Example sentence4.

I want to make it like that:

Example sentence1.
Example sentence2.
Example sentence3.
Example sentence4.

How can i do this in notepad++?


Solution

  • Press Ctrl+H and use

    Find what: .
    Replace with: .\r\n
    Search mode: Extended

    enter image description here