<?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[Skipping Blank Lines?]]></title><description><![CDATA[<p dir="auto">I have 7253 lines. I need to have all the words in a paragraph on one line. I made a macro will move all words in a paragraph, but i need to skip the empty/blank lines that seperate paragraphs.</p>
<ol>
<li>“Doss,” said Mrs. Stirling, “what do you mean by taking off your hat?  Put it on instantly!”</li>
<li></li>
<li>Valancy put it on instantly.  She was cold with fear lest Dr. Stalling should immediately summon her up front again.</li>
</ol>
<p dir="auto">I need my macro to skip line 2 in the example above. Can this be done?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/12429/skipping-blank-lines</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 05:55:14 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/12429.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 28 Sep 2016 15:38:02 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Skipping Blank Lines? on Fri, 30 Sep 2016 17:28:36 GMT]]></title><description><![CDATA[<p dir="auto">Search:<br />
<code>\s+(.*?) </code></p>
<p dir="auto">Replace with:<br />
<code>(Leave one Space)</code></p>
<p dir="auto">Or another solution:</p>
<p dir="auto">Search:<br />
<code>\R</code><br />
Replace by:<br />
<code>(Leave one space)</code></p>
]]></description><link>https://community.notepad-plus-plus.org/post/18178</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/18178</guid><dc:creator><![CDATA[Vasile Caraus]]></dc:creator><pubDate>Fri, 30 Sep 2016 17:28:36 GMT</pubDate></item><item><title><![CDATA[Reply to Skipping Blank Lines? on Fri, 30 Sep 2016 08:11:03 GMT]]></title><description><![CDATA[<p dir="auto">You may try the following RegEx for searching: <code>(?&lt;=\w)\R(?!\R)</code>. Replace with empty Text. This will remove any line break preceded by a word character and <strong>not</strong> followed by another line break. You may also try <code>\S</code> (non-space-characters) for <code>\w</code>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/18174</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/18174</guid><dc:creator><![CDATA[gerdb42]]></dc:creator><pubDate>Fri, 30 Sep 2016 08:11:03 GMT</pubDate></item><item><title><![CDATA[Reply to Skipping Blank Lines? on Thu, 29 Sep 2016 00:42:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/daily-roe" aria-label="Profile: Daily-Roe">@<bdi>Daily-Roe</bdi></a></p>
<p dir="auto">only if the pattern would be the same over the whole text otherwise<br />
you would need some regex or script to do the job. Or you find some similarity<br />
and, maybe, can use bookmarks !?</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/18146</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/18146</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Thu, 29 Sep 2016 00:42:24 GMT</pubDate></item></channel></rss>