<?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[Is it possible to skip columns in column mode?]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">Let’s say I have the following text:</p>
<p dir="auto">12345<br />
23456<br />
34567<br />
45678</p>
<p dir="auto">I want to make it:</p>
<p dir="auto">1 2 3 4 5<br />
2 3 4 5 6<br />
3 4 5 6 7<br />
4 5 6 7 8</p>
<p dir="auto">It would be great if it was possible to do selecting columns once and doing: space, move to the right, space, move to the right etc.<br />
Unfortunately once I click right arrow the column selection disappears and I need to select all the columns again (which is a problem when I have a lot of rows to edit in a long file). Is there any way to do this move to the right without losing the column selection mode?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/10934/is-it-possible-to-skip-columns-in-column-mode</link><generator>RSS for Node</generator><lastBuildDate>Sun, 09 Aug 2026 07:28:34 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/10934.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 08 Dec 2015 23:56:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is it possible to skip columns in column mode? on Fri, 11 Dec 2015 12:44:08 GMT]]></title><description><![CDATA[<p dir="auto">Yeah, this was just a sample data. It’s usually way more columns of various stuff in them (numbers, mixes strings, names, addresses etc.), sometimes white spaces as well. Sometimes I want to do: space-&gt;right-&gt;space-&gt;right-&gt;space-&gt;right-&gt;right-&gt;delete one row-&gt;copy pate 4 next rows-&gt;left x10-&gt;paste</p>
<p dir="auto">Right now I need to re-select every time for a simple task of moving in what is in one column somewhere else and inserting some spaces between other columns. It’s faster (for me) to write a Python script to handle that than use regular expression search/replace but it would be instant if there was a way to move one column to left and right without losing the column selection more.</p>
<p dir="auto">Anyway, thanks for help :)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/12553</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12553</guid><dc:creator><![CDATA[Piotr Lopusiewicz]]></dc:creator><pubDate>Fri, 11 Dec 2015 12:44:08 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to skip columns in column mode? on Thu, 10 Dec 2015 20:02:12 GMT]]></title><description><![CDATA[<p dir="auto">guy038,<br />
I don’t think it was a matter of not understanding regex for Piotr, it was a matter of looking for a lighterweight solution, and in the best-case, a built-in solution.  I also think that his data set was probably contrived and not really typical of the data he’s handling, but something to discuss his conceptual desire with.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/12542</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12542</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Thu, 10 Dec 2015 20:02:12 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to skip columns in column mode? on Thu, 10 Dec 2015 19:38:38 GMT]]></title><description><![CDATA[<p dir="auto">Hello <strong>Piotr</strong>,</p>
<p dir="auto">May be you’re not very <strong>acquainted</strong> to <strong>regular</strong> expressions, but the search/replacement, below, is <strong>quite easy</strong> to understand :-)</p>
<ul>
<li>
<p dir="auto">Open the <strong>Replace dialog</strong> ( <strong>CTRL + H</strong> )</p>
</li>
<li>
<p dir="auto">Select the <strong>Regular expression</strong> search mode</p>
</li>
<li>
<p dir="auto">SEARCH <strong><code>(?-s).</code></strong></p>
</li>
<li>
<p dir="auto">REPLACE <strong><code>$0 </code></strong> with a <strong>SPACE</strong> after the digit <strong>0</strong></p>
</li>
<li>
<p dir="auto">Click on the <strong>Replace All</strong> button</p>
</li>
</ul>
<p dir="auto">Et voilà ! <strong>Not difficult</strong>, isn’t it ?</p>
<p dir="auto">Notes :</p>
<ul>
<li>
<p dir="auto">The <strong><code>.</code></strong> ( <strong>DOT</strong> ) represents any standard character, different from the <strong>three EOL</strong> characters ( <strong><code>\r</code></strong>, <strong><code>\n</code></strong> and <strong><code>\f</code></strong> )</p>
</li>
<li>
<p dir="auto">The form <strong><code>(?-s)</code></strong>, located at the beginning, forces the <strong>dot</strong> to be a <strong>standard</strong> character only ( just in case you previously checked the <strong>. matches newline</strong> option ! ). It’s a general <strong>option</strong>, meaning that the subject text won’t be considered as a <strong>S</strong>ingle line, with <strong>standard</strong> and <strong>EOL</strong> characters <strong>mixed</strong>.</p>
</li>
<li>
<p dir="auto">The syntax <strong><code>$0</code></strong>, in the replacement string, simply represents the <strong>searched</strong> string, that is to say <strong>any standard</strong> character found. And, after <strong>each</strong> character re-written, we just add a <strong>single space</strong> !</p>
</li>
</ul>
<p dir="auto">Of course, with the <strong>Python Script</strong> plugin, you may save this <strong>specific</strong> S/R, in a script, for later use :-)</p>
<p dir="auto">Best Regards</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/12541</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12541</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Thu, 10 Dec 2015 19:38:38 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to skip columns in column mode? on Wed, 09 Dec 2015 23:01:41 GMT]]></title><description><![CDATA[<p dir="auto">Yeah, I am writing Python scripts for anything more complicated anyway but that feature would be just very convenient for quick editing. Writing a regular expression to match what is in the columns is more work than writing a script on the side anyway.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/12522</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12522</guid><dc:creator><![CDATA[Piotr Lopusiewicz]]></dc:creator><pubDate>Wed, 09 Dec 2015 23:01:41 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible to skip columns in column mode? on Wed, 09 Dec 2015 12:02:41 GMT]]></title><description><![CDATA[<p dir="auto">I don’t believe so.  May I suggest a regular expression search-and-replace?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/12500</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/12500</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Wed, 09 Dec 2015 12:02:41 GMT</pubDate></item></channel></rss>