<?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[Replace all number to a new line]]></title><description><![CDATA[<p dir="auto">Hello… please help me friend.</p>
<p dir="auto">i have this data bellow :</p>
<p dir="auto">Microsoft Lync14.4.3<br />
Wunderlist3.4.25<br />
Artbox for Affinity1.1<br />
GlowPuzzle2.0<br />
Speech1.8.2<br />
Paste Queue (Multi Clipboard)1.3<br />
MPS2018.2<br />
Yandex.Disk3.0.3</p>
<p dir="auto">and i need to separate all the word and number like this :</p>
<p dir="auto">Peep<br />
2.3.4<br />
Microsoft Lync<br />
14.4.3<br />
Wunderlist<br />
3.4.25<br />
Artbox for Affinity<br />
1.1<br />
GlowPuzzle<br />
2.0<br />
Speech<br />
1.8.2<br />
Paste Queue (Multi Clipboard)<br />
1.3<br />
MPS<br />
2018.2<br />
Yandex.Disk<br />
3.0.3</p>
<p dir="auto">please help me for do this… thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19482/replace-all-number-to-a-new-line</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 17:33:12 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19482.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 31 May 2020 14:47:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Replace all number to a new line on Sun, 31 May 2020 16:44:25 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/app-guide" aria-label="Profile: app-guide">@<bdi>app-guide</bdi></a> and <strong>All</strong>,</p>
<p dir="auto"><strong>Easy</strong> with regexes !</p>
<ul>
<li>
<p dir="auto">Open the <strong>Replace</strong> dialog ( <strong><code>Ctrl + H</code></strong>)</p>
<ul>
<li>
<p dir="auto">Type in <strong><code>[\d.]+$</code></strong> in the <strong>Find what:</strong> zone</p>
</li>
<li>
<p dir="auto">Type in <strong><code>\r\n$0</code></strong> in the <strong>Replace with:</strong> zone    OR    <strong><code>\n$0</code></strong> if you works on an <strong>Unix</strong> file</p>
</li>
<li>
<p dir="auto"><strong>Tick</strong> the <strong><code>Wrap around</code></strong> option</p>
</li>
<li>
<p dir="auto">Select the <strong><code>Regular expression</code></strong> <strong>search</strong> mode</p>
</li>
<li>
<p dir="auto">Click on the <strong><code>Replace All</code></strong> button</p>
</li>
</ul>
</li>
</ul>
<p dir="auto">Voila :-))</p>
<p dir="auto"><strong>Notes</strong> :</p>
<ul>
<li>
<p dir="auto">The <strong><code>[\d.]</code></strong> regex syntax searches for a <strong>single</strong> character which can be, either, a <strong>digit</strong> (<strong><code>\d</code></strong>) or a <strong>dot</strong> ( <strong><code>.</code></strong> )</p>
</li>
<li>
<p dir="auto">Then, the <strong><code>[\d.]+</code></strong> looks for a <strong>non-null</strong> range of characters, which can be, either, a <strong>digit</strong> or a <strong>dot</strong></p>
</li>
<li>
<p dir="auto">And the <strong><code>[\d.]+$</code></strong> tries to match the <strong>greatest</strong> non-null range of <strong>digits</strong> / <strong>dots</strong> till the <strong>end</strong> ( <strong><code>$</code></strong> ) of <strong>current</strong> line</p>
</li>
<li>
<p dir="auto">In <strong>replacement</strong>, we first write the <strong>line-break</strong> characters ( <strong><code>\r\n</code></strong>  or <strong><code>\n</code></strong> ), followed with the <strong>overall search</strong> match ( <strong><code>$0</code></strong> )</p>
</li>
</ul>
<p dir="auto">Best regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/54465</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/54465</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sun, 31 May 2020 16:44:25 GMT</pubDate></item></channel></rss>