<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[regex - add a new line at the beginning after every point | cut sentences in new line]]></title><description><![CDATA[<p dir="auto">good day. I have many sentences in a single line. For exemple:</p>
<pre><code>I go home. My mother is with my sister. I love Pepsi. I need somebody to love me. I have to make some exercises.
</code></pre>
<p dir="auto">My desire output:</p>
<pre><code>I go home. 
My mother is with my sister.
I love Pepsi.
I need somebody to love me.
I have to make some exercises.
</code></pre>
<p dir="auto">My solution is:</p>
<p dir="auto">Search:  <code>[=.:].*</code><br />
Replace by: <code>\n$0</code></p>
<p dir="auto">But is not quite very best solution, because it brings also the point at the beginning of the new line.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/16733/regex-add-a-new-line-at-the-beginning-after-every-point-cut-sentences-in-new-line</link><generator>RSS for Node</generator><lastBuildDate>Fri, 06 Mar 2026 02:17:52 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/16733.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 01 Dec 2018 10:51:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to regex - add a new line at the beginning after every point | cut sentences in new line on Sat, 01 Dec 2018 11:29:54 GMT]]></title><description><![CDATA[<p dir="auto">Search for: <code>([.:=*]) +</code><br />
Replace with: <code>\1\r\n</code></p>
]]></description><link>https://community.notepad-plus-plus.org/post/37055</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/37055</guid><dc:creator><![CDATA[dinkumoil]]></dc:creator><pubDate>Sat, 01 Dec 2018 11:29:54 GMT</pubDate></item><item><title><![CDATA[Reply to regex - add a new line at the beginning after every point | cut sentences in new line on Sat, 01 Dec 2018 11:25:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/7192">@dinkumoil</a> said:</p>
<blockquote>
<p dir="auto">.\r\n</p>
</blockquote>
<p dir="auto">and if there are many special characters instead of point, such as <code>=:*</code> ? How can I change it?</p>
<p dir="auto">For example:</p>
<pre><code>I go home= My mother is with my sister: I love Pepsi. I need somebody to love me* I have to make some exercises*
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/37054</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/37054</guid><dc:creator><![CDATA[Neculai I. Fantanaru]]></dc:creator><pubDate>Sat, 01 Dec 2018 11:25:31 GMT</pubDate></item><item><title><![CDATA[Reply to regex - add a new line at the beginning after every point | cut sentences in new line on Sat, 01 Dec 2018 11:18:57 GMT]]></title><description><![CDATA[<p dir="auto">Search for: <code>\. +</code> (literal full stop with one or more trailing space characters)<br />
Replace with: <code>.\r\n</code> (full stop with trailing CR+LF)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/37053</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/37053</guid><dc:creator><![CDATA[dinkumoil]]></dc:creator><pubDate>Sat, 01 Dec 2018 11:18:57 GMT</pubDate></item></channel></rss>