<?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[about selection]]></title><description><![CDATA[<p dir="auto">i have one txt like this:</p>
<pre><code>pacecececrst$$$!
###
peerfergeg4Me&lt;123
17ergergom/file/wv7PNHVud9kAerAP3_WO-g/1554th0810.7zg
1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
ergergerge34r43r343
###
pasdcd555ye2018
6664lekrflkeuN3s5lmSigp56oveKPp6w/erferfef3443r3434
15o4fkfk4lf,dfmemfgermp
###
paerf3904r903ur3jgj
</code></pre>
<p dir="auto">how to select all text excepted ### line?</p>
<p dir="auto">and another: if i put bookmark on each line with ###<br />
then from search - bookm - invers bookmark<br />
how to select all bookm lines?</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19143/about-selection</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 05:32:55 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19143.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Apr 2020 07:24:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to about selection on Sun, 05 Apr 2020 13:00:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a> tanxs you so much for your explanation and for modification to your reg-ex!<br />
now it works very well!<br />
I never said I had an example like yours, but maybe it’s my fault that I didn’t explain myself well …<br />
everything is working fine now. always thanks for your regex!<br />
cheers</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52163</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52163</guid><dc:creator><![CDATA[cisco779k]]></dc:creator><pubDate>Sun, 05 Apr 2020 13:00:31 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sun, 05 Apr 2020 10:32:06 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/terry-r" aria-label="Profile: Terry-r">@<bdi>Terry-r</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Oh…, <a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>, I’m <strong>sorry</strong> ! I did <strong>not</strong> notice the <strong>differences</strong> between <strong>your</strong> example, below :</p>
<pre><code class="language-diff">###
ergergerge34r43r343
17ergergom/file/wv7PNHVud9kA
1ergergergegQy2iSLvFyoduWHrU
ergergerggupload.com/filerge
peerfergeg4Me&lt;123
###
</code></pre>
<p dir="auto">and <strong>my</strong> example :</p>
<pre><code class="language-diff">###                                ###
ergergerge34r43r343                peerfergeg4Me&lt;123
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
ergergerggupload.com/filerge       17ergergom/file/wv7PNHVud9kAerAP3_WO-g/1554th0810.7zg
peerfergeg4Me&lt;123                  ergergerge34r43r343
###                                ###
</code></pre>
<ul>
<li>
<p dir="auto">In <strong>your</strong> example, the header string <strong><code>###</code></strong> is <strong>immediately</strong> followed with a <strong>line-break</strong></p>
</li>
<li>
<p dir="auto">In <strong>mime</strong>, the header string <strong><code>###</code></strong> is followed with <strong>blank</strong> chars and an <strong>other</strong> string <strong><code>###</code></strong></p>
</li>
</ul>
<p dir="auto">So the <strong>obvious</strong> correction to do is to use the following <strong>S/R</strong> :</p>
<p dir="auto">SEARCH <strong><code>(?-s)^(###.*\R)(.+\R)((?:.+\R)*?)(.+\R)(?=^###)</code></strong></p>
<p dir="auto">REPLACE <strong><code>\1\4\3\2</code></strong></p>
<p dir="auto">As you see, <strong>only</strong> the first <strong><code>+</code></strong> symbol, of the regex, has been <strong>changed</strong> into a <strong><code>*</code></strong> symbol, meaning that string <strong><code>###</code></strong>, <strong>beginning</strong> the line ( <strong><code>^</code></strong> ), must be followed by <strong><code>0 to n</code></strong> <strong>standard</strong> characters (<strong><code>.*</code></strong> ) before the <strong>line-break</strong> ( <strong><code>\R</code></strong> ) !</p>
<p dir="auto">I should have remarked this <strong>difference</strong> before which would have avoided you to <strong>post</strong> again ;-))</p>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52156</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52156</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sun, 05 Apr 2020 10:32:06 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sun, 05 Apr 2020 10:19:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a></p>
<p dir="auto">What I find confusing is that, when asked again, not to take the trouble<br />
to explain exactly where the problem is and what you expect to get as a result.</p>
<p dir="auto">For example your mail from 2 days ago.<br />
You write that in some cases it may be that between the ### lines<br />
can also be 9 lines to be found and give 5 lines as an example. Confuses me.</p>
<p dir="auto">The whole thing suggests that there could be 10 or 15 or only 2 or 3 lines.<br />
You see what I mean?</p>
<p dir="auto">The better and more precise you can ask your question the easier it is for others to help you.<br />
If there are problems with the language, I would use an online translator for what I am doing right now.<br />
They get better and better the more they are used.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52155</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52155</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sun, 05 Apr 2020 10:19:59 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sun, 05 Apr 2020 07:58:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a><br />
I wanted to recall the post, since i didn’t see answers after 2 days and i don’t know how else to contact you. I didn’t want to be rude, it was fair to close the question…</p>
<p dir="auto">well: you have read my post above? with your reply you have published same reg-ex of your previous post.<br />
and not work for me… same reg-ex.<br />
perhaps it is i who do not understand.<br />
now i have this example:</p>
<pre><code>###
peerfergeg4Me&lt;123
17ergergom/file/wv7PNHVud9kA
1ergergergegQy2iSLvFyoduWHrU
ergergerggupload.com/filerge
ergergerge34r43r343
### 
</code></pre>
<p dir="auto">this is only 5 line, but on some case i have field to 9 lines.<br />
i want reverse first with last line like this:</p>
<pre><code>###
ergergerge34r43r343
17ergergom/file/wv7PNHVud9kA
1ergergergegQy2iSLvFyoduWHrU
ergergerggupload.com/filerge
peerfergeg4Me&lt;123
### 
</code></pre>
<p dir="auto">on this example your reg-ex not work (for me).</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52152</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52152</guid><dc:creator><![CDATA[cisco779k]]></dc:creator><pubDate>Sun, 05 Apr 2020 07:58:53 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sat, 04 Apr 2020 23:16:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry-r" aria-label="Profile: Terry-R">@<bdi>Terry-R</bdi></a> said in <a href="/post/52067">about selection</a>:</p>
<blockquote>
<p dir="auto">find a method to count max number of lines in any group. That is another question to be answered. I did have a regex which can do it, but it was not elegant.</p>
</blockquote>
<p dir="auto">Nice and tricky puzzle. Don’t know if it is elegant or not — another question related to the eye of the beholder —, but found a regex solution for it, a long string of 172 characters for the search expression that matches groups up to 10 lines. Can post it, if interested.</p>
<p dir="auto">Best Regards.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52145</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52145</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Sat, 04 Apr 2020 23:16:34 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sat, 04 Apr 2020 23:04:57 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a>, All</p>
<p dir="auto">Thank you for getting back to me. I am too a big fan of the bullet <code>•</code> —the symbol, not the projectile :)—. In my numeric keypad the bullet is typed by the sequence you mentioned and also with just <code>Alt + numpad7</code>, but as I used it a lot, usually get it through a hotstring, a triple <code>ooo</code>, which I can easily remember.</p>
<p dir="auto">Concerning your samples, I agree that the bullet looks better than asterisks and dots in ASCII tables. The adding sign <code>+</code> also looks fine when used for crossing single lines.</p>
<p dir="auto">I began to see the seemingly next step in tables, the ones constructed with Unicode characters, but I didn´t found the time yet to deal with them.</p>
<p dir="auto">Well, that’s enough for me and sorry for hijacking the thread.</p>
<p dir="auto">Best Regards.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52144</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52144</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Sat, 04 Apr 2020 23:04:57 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sat, 04 Apr 2020 20:24:17 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/terry-r" aria-label="Profile: Terry-r">@<bdi>Terry-r</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Please, don’t be so <strong>rude</strong> : I’m only trying to <strong>help</strong>, freely and I also <strong>answer</strong> to other people !</p>
<p dir="auto">You said, previously :</p>
<blockquote>
<p dir="auto">in reality i would just like to invert the first with the last line, in any ### field</p>
</blockquote>
<p dir="auto">and also :</p>
<blockquote>
<p dir="auto">in some cases i also have 9 lines (between ### field)…</p>
</blockquote>
<p dir="auto">But, given the <strong>initial</strong> text, below, ( which may not respect your logic ! Just an <strong>example</strong> )</p>
<pre><code class="language-diff">###                                ###
1234567890                         1234567890
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
15o4fkfk4lf,dfmemfgermp            pasdcd555ye2018
6664lekrflkeuN3s5lmSigp56ove       6664lekrflkeuN3s5lmSigp56oveKPp6w/erferfef3443r3434
pasdcd555ye2018                    15o4fkfk4lf,dfmemfgermp
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
ergergerggupload.com/filerge       17ergergom/file/wv7PNHVud9kAerAP3_WO-g/1554th0810.7zg
ergergerge34r43r343                peerfergeg4Me&lt;123
0987676543210                      0987676543210
###                                ###
</code></pre>
<p dir="auto">after running my <strong>regex</strong> S/R :</p>
<p dir="auto">SEARCH <strong><code>(?-s)^(###.+\R)(.+\R)((?:.+\R)*?)(.+\R)(?=^###)</code></strong></p>
<p dir="auto">REPLACE <strong><code>\1\4\3\2</code></strong></p>
<p dir="auto">it does give the <strong>expected</strong> text :</p>
<pre><code class="language-diff">###                                ###
0987676543210                      0987676543210
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
15o4fkfk4lf,dfmemfgermp            pasdcd555ye2018
6664lekrflkeuN3s5lmSigp56ove       6664lekrflkeuN3s5lmSigp56oveKPp6w/erferfef3443r3434
pasdcd555ye2018                    15o4fkfk4lf,dfmemfgermp
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
ergergerggupload.com/filerge       17ergergom/file/wv7PNHVud9kAerAP3_WO-g/1554th0810.7zg
ergergerge34r43r343                peerfergeg4Me&lt;123
1234567890                         1234567890
###                                ###
</code></pre>
<p dir="auto">Obviously, the <strong>first</strong> and <strong>last</strong> line, made of <strong>digits</strong> only, are <strong>inverted</strong> ! So what ?</p>
<p dir="auto">Best regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52140</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52140</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sat, 04 Apr 2020 20:24:17 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Sat, 04 Apr 2020 16:59:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a><br />
your reg-ex don’t work…<br />
please read this post!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52133</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52133</guid><dc:creator><![CDATA[cisco779k]]></dc:creator><pubDate>Sat, 04 Apr 2020 16:59:57 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 12:42:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry-r" aria-label="Profile: Terry-R">@<bdi>Terry-R</bdi></a><br />
do not angry! your regex work fine.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a><br />
tanxs (ever) for your help!<br />
but not work for me… why??<br />
in some cases i also have 9 lines (between ### field)…</p>
<p dir="auto"><img src="https://camo.nodebb.org/3e1e3689480e78580e53a40cd1133014d2288245?url=https%3A%2F%2Fi.postimg.cc%2FSRLtpgkG%2Fcxv.jpg" alt="alt text" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/52089</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52089</guid><dc:creator><![CDATA[cisco779k]]></dc:creator><pubDate>Fri, 03 Apr 2020 12:42:41 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 11:58:34 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/terry-r" aria-label="Profile: Terry-r">@<bdi>Terry-r</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">You said in your <strong>last</strong> post :</p>
<blockquote>
<p dir="auto">in reality i would just like to invert the first with the last line, in any ### field</p>
</blockquote>
<p dir="auto">Then, given the <strong>input</strong> text below :</p>
<pre><code class="language-sh">pacecececrst$$$!                   pacecececrst$$$!
###                                ###
peerfergeg4Me&lt;123                  ergergerge34r43r343
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
ergergerggupload.com/filerge       17ergergom/file/wv7PNHVud9kAerAP3_WO-g/1554th0810.7zg
ergergerge34r43r343                peerfergeg4Me&lt;123
###                                ###
pasdcd555ye2018                    15o4fkfk4lf,dfmemfgermp
6664lekrflkeuN3s5lmSigp56ove       6664lekrflkeuN3s5lmSigp56oveKPp6w/erferfef3443r3434
15o4fkfk4lf,dfmemfgermp            pasdcd555ye2018
###                                ###
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
###                                ###
paerf3904r903ur3jgj                paerf3904r903ur3jgj
</code></pre>
<p dir="auto">The following <strong>regex</strong> S/R :</p>
<p dir="auto">SEARCH <strong><code>(?-s)^(###.+\R)(.+\R)((?:.+\R)*?)(.+\R)(?=^###)</code></strong></p>
<p dir="auto">REPLACE <strong><code>\1\4\3\2</code></strong></p>
<p dir="auto">should get your <strong>expected</strong> text :</p>
<pre><code class="language-sh">pacecececrst$$$!                   pacecececrst$$$!
###                                ###
ergergerge34r43r343                peerfergeg4Me&lt;123
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
ergergerggupload.com/filerge       17ergergom/file/wv7PNHVud9kAerAP3_WO-g/1554th0810.7zg
peerfergeg4Me&lt;123                  ergergerge34r43r343
###                                ###
15o4fkfk4lf,dfmemfgermp            pasdcd555ye2018
6664lekrflkeuN3s5lmSigp56ove       6664lekrflkeuN3s5lmSigp56oveKPp6w/erferfef3443r3434
pasdcd555ye2018                    15o4fkfk4lf,dfmemfgermp
###                                ###
1ergergergegQy2iSLvFyoduWHrU       1ergergergegQy2iSLvFyoduWHrUjN7g/1554th18.7zg
17ergergom/file/wv7PNHVud9kA       ergergerggupload.com/filerge/uU8CesyKVkPb4MWk_0VqkQ/1554th11.7z
###                                ###
paerf3904r903ur3jgj                paerf3904r903ur3jgj
</code></pre>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52085</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52085</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Fri, 03 Apr 2020 11:58:34 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 11:36:10 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">In a <strong>previous</strong> post of that discussion, you said :</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a>, let me ask you a question: how do you create those nice tables? Is a free tool? I’m curious.</p>
</blockquote>
<p dir="auto">Well, in fact, I don’t use <strong>any</strong> specific tool ! Just the usual <strong>column mode</strong> editor, with the help, mainly, of <strong><code>3</code></strong> <strong>characters</strong> only :</p>
<ul>
<li>
<p dir="auto">The <strong>Hythen-Minus</strong> sign <strong><code>-</code></strong></p>
</li>
<li>
<p dir="auto">The <strong>Equals</strong> sign <strong><code>=</code></strong></p>
</li>
<li>
<p dir="auto">The <strong>Bullet</strong> sign <strong><code>•</code></strong></p>
</li>
</ul>
<p dir="auto">I personally like the <strong>Bullet</strong> sign because it is exactly <strong>vertically centered</strong> ;-)) It’s <strong>Unicode</strong> code-point is <strong><code>\x{2022}</code></strong>. Refer to :</p>
<p dir="auto"><a href="http://www.unicode.org/charts/PDF/U2000.pdf" rel="nofollow ugc">http://www.unicode.org/charts/PDF/U2000.pdf</a></p>
<p dir="auto">Most of the time, you can get it with the <strong>keyboard</strong> sequence :</p>
<ul>
<li>
<p dir="auto">Hold down the <strong><code>Alt</code></strong> key</p>
</li>
<li>
<p dir="auto">Hit, <strong>successively</strong>, on keys <strong><code>0</code></strong> , <strong><code>1</code></strong>, <strong><code>4</code></strong> and <strong><code>9</code></strong> of the <strong>numeric</strong> keypad</p>
</li>
<li>
<p dir="auto">Release the <strong><code>Alt</code></strong> key</p>
</li>
</ul>
<hr />
<p dir="auto">Tables composed with that character look <strong>better</strong> than using the <strong>Asterisk</strong> sign ( <strong><code>*</code></strong> ) or the <strong>Full Stop/Dot</strong> char ( <strong><code>.</code></strong> ). See, examples below :</p>
<pre><code class="language-z">•---------------•--------------•---------------•        *---------------*--------------*---------------*        .---------------.--------------.---------------.
|   LANGUAGE    |  MAIN form   |  OTHER forms  |        |   LANGUAGE    |  MAIN form   |  OTHER forms  |        |   LANGUAGE    |  MAIN form   |  OTHER forms  |
•---------------•--------------•---------------•        *---------------*--------------*---------------*        .---------------.--------------.---------------.
|  bash         |  sh          |  bash         |        |  bash         |  sh          |  bash         |        |  bash         |  sh          |  bash         |
|               |              |               |        |               |              |               |        |               |              |               |
|  c            |  c           |  h            |        |  c            |  c           |  h            |        |  c            |  c           |  h            |
|  c++          |  cpp         |  hpp          |        |  c++          |  cpp         |  hpp          |        |  c++          |  cpp         |  hpp          |
|  c#           |  cs          |               |        |  c#           |  cs          |               |        |  c#           |  cs          |               |
|  CSS          |  css         |               |        |  CSS          |  css         |               |        |  CSS          |  css         |               |
|               |              |               |        |               |              |               |        |               |              |               |
|  DIFF         |  diff        |  patch        |        |  DIFF         |  diff        |  patch        |        |  DIFF         |  diff        |  patch        |
•---------------•--------------•---------------•        *---------------*--------------*---------------*        .---------------.--------------.---------------.
                                                                                                                
                                                                                                                
•===============•==============•===============•        *===============*==============*===============*        .===============.==============.===============.
|   LANGUAGE    |  MAIN form   |  OTHER forms  |        |   LANGUAGE    |  MAIN form   |  OTHER forms  |        |   LANGUAGE    |  MAIN form   |  OTHER forms  |
•===============•==============•===============•        *===============*==============*===============*        .===============.==============.===============.
|  bash         |  sh          |  bash         |        |  bash         |  sh          |  bash         |        |  bash         |  sh          |  bash         |
|---------------•--------------•---------------|        |---------------*--------------*---------------|        |---------------*--------------*---------------|
|  c            |  c           |  h            |        |  c            |  c           |  h            |        |  c            |  c           |  h            |
|  c++          |  cpp         |  hpp          |        |  c++          |  cpp         |  hpp          |        |  c++          |  cpp         |  hpp          |
|  c#           |  cs          |               |        |  c#           |  cs          |               |        |  c#           |  cs          |               |
|  CSS          |  css         |               |        |  CSS          |  css         |               |        |  CSS          |  css         |               |
|---------------•--------------•---------------|        |---------------*--------------*---------------|        |---------------*--------------*---------------|
|  DIFF         |  diff        |  patch        |        |  DIFF         |  diff        |  patch        |        |  DIFF         |  diff        |  patch        |
•===============•==============•===============•        *===============*==============*===============*        .===============.==============.===============.
</code></pre>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52084</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52084</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Fri, 03 Apr 2020 11:36:10 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 08:53:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a> said in <a href="/post/52079">about selection</a>:</p>
<blockquote>
<p dir="auto">in reality i would just like to invert the first with the last line</p>
</blockquote>
<p dir="auto">I’m disappointed, not so much that my solution doesn’t now work as that you have totally changed the problem!<br />
You aren’t the first to pull this stunt and likely won’t be the last but at the moment it is late evening for me so I’m not inclined to bust out my PC just to solve your new problem.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52081</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52081</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Fri, 03 Apr 2020 08:53:49 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 08:35:22 GMT]]></title><description><![CDATA[<p dir="auto">in reality i would just like to invert the first with the last line, in any  <code> ###</code> field</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52079</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52079</guid><dc:creator><![CDATA[cisco779k]]></dc:creator><pubDate>Fri, 03 Apr 2020 08:35:22 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 07:54:49 GMT]]></title><description><![CDATA[<p dir="auto">tanxs Terry! your reg-ex work fine for my intent! tanxs so much.<br />
the rest of the discussion went a little off topic … should be moved to a separate post … anyway thanks to everyone for your attention.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52075</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52075</guid><dc:creator><![CDATA[cisco779k]]></dc:creator><pubDate>Fri, 03 Apr 2020 07:54:49 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 04:17:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> said in <a href="/post/52066">about selection</a>:</p>
<blockquote>
<p dir="auto">as you constraint it to only 9 groups.</p>
</blockquote>
<p dir="auto">Actually I did mention it could be extended and whilst not entirely familiar with the syntax I am aware of the possibility.<br />
The examples provided only went to 5 or so lines so felt no need to get too complex. As I said a solution had been found and this was partly an exercise in testing my idea as it was different. Possibly it might pay, if OP wants to utilise this idea to first find a method to count max number of lines in any group. That is another question to be answered. I did have a regex which can do it, but it was not elegant.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52067</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52067</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Fri, 03 Apr 2020 04:17:46 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 03:52:41 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/terry-r" aria-label="Profile: Terry-R">@<bdi>Terry-R</bdi></a>, All</p>
<p dir="auto">Clever idea, I like it. And what I like even more is that it is easy to communicate and to apply, just one step, a S/R replacement. My approach isn’t original as well, and it is really complex, as it involves the BetterMultiSelection plugin, Column Editor, and a macro that mechanizes a regex and a sort to reverse the lines.</p>
<p dir="auto">However, your method has a curious drawback, as you constraint it to only 9 groups. The good news is that there is no reason to stop here.</p>
<p dir="auto">Don’t know if I’m guessing too much, but I suspect you were misguided by a syntactic issue, as replacements use the backslash <code>\</code>. I don’t remember where I learn about it, but it is possible to create up to 99 replacement groups, as long as the dollar <code>$</code> sign is used in them. Hope I am not wrong about this, <a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a> surely knows all the details.</p>
<p dir="auto">As a test, just add two more groups to the Search field, and enter <code>($11)($10)$9$8$7$6$5$4$3$2$1</code> in the Replace box. Worked nice in this sample:</p>
<pre><code class="language-z">###
one one one one
two two two two
three three three three
four four four four
five five five five
six six six six
seven seven seven seven
eight eight eight eight
nine nine nine nine
ten ten ten ten
eleven eleven eleven eleven
###
eleven eleven eleven eleven
ten ten ten ten
nine nine nine nine
eight eight eight eight
seven seven seven seven
six six six six
five five five five
four four four four
three three three three
two two two two
one one one one
###
</code></pre>
<p dir="auto">Best Regards</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52066</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52066</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Fri, 03 Apr 2020 03:52:41 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 00:06:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> said in <a href="/post/51991">about selection</a>:</p>
<blockquote>
<p dir="auto">reverse all the lines between hashes and only those</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>  said:<br />
@ astrosofista<br />
you understand what I want to do</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a><br />
I’m aware this problem has largely been solved but thought it an interesting enough exercise to see if another method could be obtained by keeping the file intact and not having to use a plugin or export lines to another file. I think I’ve come up with a solution. It’s not original, indeed I knew of anoher solution employing this technique provided by <a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a> some time ago to pad out numbers (right justify).</p>
<p dir="auto">So my regex is<br />
Find What:<code>(?-s)(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)?(^[^#]{3}.+\R)</code><br />
Replace With:<code>\9\8\7\6\5\4\3\2\1</code></p>
<p dir="auto">So at the moment it cannot work with more than 9 lines grouped together, however the concept can be expanded to more lines. Each capture group will store a line if AND only if the lines doesn’t start with 3 <code>#</code> characters. Then the Replace With field writes them back in reverse order. As some capture groups will be empty there will be nothing to write.</p>
<p dir="auto">The only proviso I have is that there must be (in the current form of the regex) a blank line at the bottom of the file. This allows the last line to be captured as part of a group.</p>
<p dir="auto">my 2cents worth<br />
Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52063</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52063</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Fri, 03 Apr 2020 00:06:55 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Fri, 03 Apr 2020 00:02:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a></p>
<p dir="auto">I get your points and I think they are quite reasonable. However and unfortunately I don’t clearly see the reddish text inside backtickets displayed on a black background —my better option—, so I feel the need to look for other color(s) to easy my reading.</p>
<p dir="auto">Now, concerning your <em>ideal way</em> of extracting data from the Find window, I like the idea and depending on how much use I could give it, I will probably develop my own, thank you for the inspiration! :-)</p>
<p dir="auto">Best Regards</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52062</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52062</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Fri, 03 Apr 2020 00:02:10 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Thu, 02 Apr 2020 23:03:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> said in <a href="/post/52057">about selection</a>:</p>
<blockquote>
<p dir="auto">edit: sorry, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> , for hijacking your thread with this tangent.</p>
</blockquote>
<p dir="auto">Nothing to be sorry about, and for sure the info is quite relevant, so I am paying attention.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52061</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52061</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Thu, 02 Apr 2020 23:03:19 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Thu, 02 Apr 2020 22:57:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> said in <a href="/post/52054">about selection</a>:</p>
<blockquote>
<p dir="auto">I hope <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> won’t have strong opinions against it, ha ha.</p>
</blockquote>
<p dir="auto">Well…  :-)</p>
<p dir="auto">Do it the way you want, but IMO this would be a more proper way, from your examples:</p>
<p dir="auto">Search: <code>(?s)[^#]+\R\K.*?(?=\R[^#])</code><br />
Replace: [leave empty]</p>
<p dir="auto">It doesn’t muddy what one would copy for the search regex, and since “[leave empty]” isn’t a regex it shouldn’t be specially highlighted.</p>
<p dir="auto">But, really, it is all pointless.  Whatever gets your point across.</p>
<p dir="auto">Lately my ideal way is this:</p>
<p dir="auto"><em><strong>Find what</strong></em> box: <code>(?s)[^#]+\R\K.*?(?=\R[^#])</code><br />
<em><strong>Backward direction</strong></em> checkbox: <strong>unticked</strong><br />
<em><strong>Match whole word only</strong></em> checkbox: <strong>unticked (and disabled)</strong><br />
<em><strong>Match case</strong></em> checkbox: <strong>unticked</strong><br />
<em><strong>Wrap around</strong></em> checkbox: <strong>unticked</strong><br />
<em><strong>Search mode</strong></em> radiobutton: <em><strong>Regular expression</strong></em></p>
<p dir="auto">…because I have a script that grabs that data right off the Find window, and formats it.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52058</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52058</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Thu, 02 Apr 2020 22:57:54 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Thu, 02 Apr 2020 22:48:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a>,</p>
<blockquote>
<p dir="auto">Could your confirm my tests ?</p>
</blockquote>
<h3>auto-identify:</h3>
<pre><code>my $default;
open my $fh, '&gt;', 'out.txt' or die "Goodbye, cruel world: $!";
sub hehe { say "haha"; }
BEGIN {
    $default = Win32::Mechanize::NotepadPlusPlus::Notepad-&gt;_new();
}
</code></pre>
<h3>force <code>```pl</code></h3>
<pre><code class="language-pl">my $default;
open my $fh, '&gt;', 'out.txt' or die "Goodbye, cruel world: $!";
sub hehe { say "haha"; }
BEGIN {
    $default = Win32::Mechanize::NotepadPlusPlus::Notepad-&gt;_new();
}
</code></pre>
<h3>force <code>```py</code> (purposefully wrong syntax)</h3>
<pre><code class="language-py">my $default;
open my $fh, '&gt;', 'out.txt' or die "Goodbye, cruel world: $!";
sub hehe { say "haha"; }
BEGIN {
    $default = Win32::Mechanize::NotepadPlusPlus::Notepad-&gt;_new();
}
</code></pre>
<h3>force <code>```z</code> (blank)</h3>
<pre><code class="language-z">my $default;
open my $fh, '&gt;', 'out.txt' or die "Goodbye, cruel world: $!";
sub hehe { say "haha"; }
BEGIN {
    $default = Win32::Mechanize::NotepadPlusPlus::Notepad-&gt;_new();
}
</code></pre>
<h3>indent</h3>
<pre><code>my $default;
open my $fh, '&gt;', 'out.txt' or die "Goodbye, cruel world: $!";
sub hehe { say "haha"; }
BEGIN {
    $default = Win32::Mechanize::NotepadPlusPlus::Notepad-&gt;_new();
}
</code></pre>
<h3>summary</h3>
<p dir="auto">yes, it auto-identifies if there’s nothing.   But there are times when the text is ambiguous, or truly plaintext, so using the hardcoded filetype will enforce proper syntax highlighting in the forum.</p>
<h3>ps</h3>
<p dir="auto"><strong>edit</strong>: sorry, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a> , for hijacking your thread with this tangent.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52057</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52057</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 02 Apr 2020 22:48:06 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Thu, 02 Apr 2020 22:12:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a>, All</p>
<p dir="auto">Thank you for sharing this interesting and useful info. And also can be mixed!</p>
<p dir="auto">I played a bit with the available options and selected two alternative ways (<code>js</code> and <code>mk</code>) to the usual one to display regexes:</p>
<pre><code class="language-js">Search: (?s)[^#]+\R\K.*?(?=\R[^#])
Replace: [leave empty]
</code></pre>
<pre><code class="language-mk">Search: (?s)[^#]+\R\K.*?(?=\R[^#])
Replace: [leave empty]
</code></pre>
<p dir="auto"><code>Search: (?s)[^#]+\R\K.*?(?=\R[^#])</code><br />
<code>Replace: [leave empty]</code></p>
<p dir="auto">Both alternative displays are not multicolored and don’t mix font styles, so I think are fine. And aiming to create some contrast against text paragraphs, I am currently not sure but probably will use the second one. I hope <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a> won’t have strong opinions against it, ha ha.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a>, let me ask you a question: how do you create those nice tables? Is a free tool? I’m curious.</p>
<p dir="auto">Best Regards</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52054</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52054</guid><dc:creator><![CDATA[astrosofista]]></dc:creator><pubDate>Thu, 02 Apr 2020 22:12:06 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Thu, 02 Apr 2020 22:06:10 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/cisco779k" aria-label="Profile: cisco779k">@<bdi>cisco779k</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: alan-kilborn">@<bdi>alan-kilborn</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/astrosofista" aria-label="Profile: astrosofista">@<bdi>astrosofista</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: peterjones">@<bdi>peterjones</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Oh…, I’m <strong>sorry</strong> ! I spoke a little too <strong>fast</strong> :-(( <strong>Peter</strong>, I did some <strong>tests</strong>, again, with your piece of <strong><code>Perl</code></strong>, a <strong><code>Python</code></strong> script, some <strong><code>HTML</code></strong> and <strong><code>C</code></strong> code and…, seemingly, as soon as you click on the <strong><code>&lt;/&gt;</code></strong> icon and you <strong>paste</strong> the different pieces of <strong>code</strong>, <strong><code>NodeBB</code></strong> seems, each time, to detect <strong>correctly</strong> the language !?</p>
<p dir="auto">Indeed, after I added the <strong>related</strong> indication, and used <strong><code>Ctrl + Z</code></strong> and <strong><code>Ctrl + Y</code></strong>, I did <strong>not</strong> be able to see any <strong>difference</strong> in the code !!</p>
<p dir="auto">So, the table shown, in my <strong>previous</strong> post, is rather <strong>useless</strong>. The only <strong>interesting</strong> case  would be if you would show for instance, a <strong><code>Perl</code></strong> script, with the <strong><code>Python</code></strong> syntax !</p>
<p dir="auto">Could your <strong>confirm</strong> my tests ?</p>
<p dir="auto">Cheers,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52053</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52053</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Thu, 02 Apr 2020 22:06:10 GMT</pubDate></item><item><title><![CDATA[Reply to about selection on Thu, 02 Apr 2020 21:17:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guy038" aria-label="Profile: guy038">@<bdi>guy038</bdi></a> said in <a href="/post/52047">about selection</a>:</p>
<blockquote>
<p dir="auto">I usually write the ```z syntax</p>
</blockquote>
<p dir="auto">I always wondered why the <code>z</code> was included, and sometime between <a href="https://community.notepad-plus-plus.org/post/38274">last year</a> and now, I had dropped the <code>z</code> to become just <code>```</code> alone.  Now that I know the purpose of the <code>z</code> (and the other options), I’ll have to start using those.</p>
<p dir="auto">And if you use the <code>&lt;/&gt;</code> button to fomat a block of text, you can still go back above and add in the option; for example, here I added <code>pl</code> to the <code>```</code> line after I generated it using <code>&lt;/&gt;</code>.</p>
<pre><code class="language-pl">my $default;
open my $fh, '&gt;', 'out.txt' or die "Goodbye, cruel world: $!";
sub hehe { say "haha"; }
BEGIN {
    $default = Win32::Mechanize::NotepadPlusPlus::Notepad-&gt;_new();
}
</code></pre>
<p dir="auto">yep, it properly highlights that.  cool.</p>
<p dir="auto"><strong>edits</strong>: fixed incomplete sentences/thoughts.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52049</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52049</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Thu, 02 Apr 2020 21:17:53 GMT</pubDate></item></channel></rss>