<?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[Write numbers from one to another one.]]></title><description><![CDATA[<p dir="auto">Hello<br />
I want to write for example from 1-1000 in notepad ++.<br />
Like this 1,2,3,4,5,6,…1000<br />
How can I do this?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/15491/write-numbers-from-one-to-another-one</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 22:18:43 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/15491.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 27 Mar 2018 14:54:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Write numbers from one to another one. on Sat, 31 Mar 2018 17:06:31 GMT]]></title><description><![CDATA[<p dir="auto">Thanks all of you<br />
I got my answer.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31354</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31354</guid><dc:creator><![CDATA[dedsec24]]></dc:creator><pubDate>Sat, 31 Mar 2018 17:06:31 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Sat, 31 Mar 2018 15:58:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/195">@guy038</a></p>
<p dir="auto">My assumption was that one knows <em>how many</em> blank lines one wants…a hard number.  Then one puts this number into the <strong>Run a Macro Multiple Times…</strong> input box when prompted.</p>
<p dir="auto">Of course, if one just wants a “<em>gob</em>” of blank lines, then sure, just hold down the <strong>Enter</strong> key…</p>
<p dir="auto">We sure do get a lot of vague questions on here, though, don’t we?  :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31352</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31352</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Sat, 31 Mar 2018 15:58:49 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Sat, 31 Mar 2018 14:56:35 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/11627">@dedsec24</a>, <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/374">@scott-sumner</a>,</p>
<p dir="auto">I don’t understand, exactly, the <strong>necessity</strong> to create a <strong>macro</strong> ?!</p>
<p dir="auto">Why not, either :</p>
<ul>
<li>
<p dir="auto">Hold down the <strong>Enter</strong> key, the <strong>necessary</strong> time ?</p>
</li>
<li>
<p dir="auto">Create a <strong>pure blank</strong> line and hit on the <strong><code>Ctrl + D</code></strong> shortcut, <strong>several</strong> times ?</p>
</li>
</ul>
<p dir="auto">Cheers,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31351</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31351</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sat, 31 Mar 2018 14:56:35 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Sat, 31 Mar 2018 12:48:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/11627">@dedsec24</a> said:</p>
<blockquote>
<p dir="auto">make a lot of blank lines by the app not by hand?</p>
</blockquote>
<p dir="auto">Yes, do the following:</p>
<ul>
<li><strong>Macro</strong> (menu) -&gt; <strong>Start Recording</strong></li>
<li>In a document tab, press the <strong>Enter</strong> key</li>
<li><strong>Macro</strong> (menu) -&gt; <strong>Stop Recording</strong></li>
<li><strong>Macro</strong> (menu) -&gt; <strong>Run a Macro Multiple Times…</strong></li>
</ul>
]]></description><link>https://community.notepad-plus-plus.org/post/31347</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31347</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Sat, 31 Mar 2018 12:48:39 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Sat, 31 Mar 2018 08:26:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@PeterJones</a><br />
Hello again<br />
Thanks Peter Jones<br />
It works<br />
But i have a question.<br />
Is there any way to make a lot of blank lines by the app not by hand?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31344</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31344</guid><dc:creator><![CDATA[dedsec24]]></dc:creator><pubDate>Sat, 31 Mar 2018 08:26:32 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Wed, 28 Mar 2018 09:27:25 GMT]]></title><description><![CDATA[<p dir="auto">One short Python Script should do the job:<br />
s=‘’<br />
for i in range(1,1001):<br />
s += ‘{:},’.format(i)</p>
<p dir="auto">editor.appendText(s)</p>
<p dir="auto">inserting 1,2,3,4,5,6,…1000, at the current cursor position.</p>
<p dir="auto">Or with some help from mawk  (3rd party free software and NppExec):<br />
mawk “BEGIN { for (i = 1; i &lt;= 1000; i++) {if (i==1000) {printf i} else {printf i’,'}} }” | clip<br />
have 1,2,3,4,5,6,…1000 saved in the clipboard.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31236</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31236</guid><dc:creator><![CDATA[Gogo Neatza]]></dc:creator><pubDate>Wed, 28 Mar 2018 09:27:25 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Tue, 27 Mar 2018 18:04:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/3841">@PeterJones</a> said:</p>
<blockquote>
<p dir="auto">If you want them comma-separated instead</p>
</blockquote>
<p dir="auto">I would revise Peter’s <strong>Replace All</strong> action as follows:</p>
<p dir="auto"><strong>Find what</strong> zone: <code>\x20*\R</code><br />
<strong>Search mode</strong>: Regular expression</p>
<p dir="auto">The reason for the tweak to the <strong>Find what</strong> is that this <strong>Column editor</strong> commnd will pad on the right with blank characters if you do more than 10 lines.  The <strong>Search mode</strong> addition is simply because Peter forgot to mention it. :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31222</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31222</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Tue, 27 Mar 2018 18:04:12 GMT</pubDate></item><item><title><![CDATA[Reply to Write numbers from one to another one. on Tue, 27 Mar 2018 16:27:56 GMT]]></title><description><![CDATA[<p dir="auto">Select a number of (blank) lines equal to how high you want to count.  <code>Edit &gt; Column Editor (Alt+C) &gt; ☑ Number to Insert &gt; Initial: #, Increase: 1</code>, and it will start at #.</p>
<p dir="auto">If it’s okay to be on separate lines, you’re done.</p>
<p dir="auto">If you want them comma-separated instead, then select the rows, <code>Search &gt; Replace (Ctrl+R)</code>, FindWhat=<code>\R</code>, ReplaceWith=<code>, </code> (that’s comma space), <code>☑ In Selection</code>, <code>Replace All</code>.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/31219</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/31219</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 27 Mar 2018 16:27:56 GMT</pubDate></item></channel></rss>