<?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[mark and remove]]></title><description><![CDATA[<p dir="auto">hi guys i have list for example</p>
<p dir="auto">daniel1<br />
Marcni11<br />
dominik1<br />
majka1<br />
aadrian21<br />
Adam123<br />
in notpad when i mark 1 in list notpad mark all word have number 1 i will just mark<br />
word+1 mark and remove<br />
example list resualt</p>
<p dir="auto">daniel1<br />
dominik1<br />
majka1</p>
<p dir="auto">and tanks for help me sorry my english bad</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19013/mark-and-remove</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 14:16:42 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19013.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Mar 2020 11:41:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to mark and remove on Sun, 08 Mar 2020 13:22:05 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>
<p dir="auto">thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51249</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51249</guid><dc:creator><![CDATA[Gulab Borkar]]></dc:creator><pubDate>Sun, 08 Mar 2020 13:22:05 GMT</pubDate></item><item><title><![CDATA[Reply to mark and remove on Sun, 08 Mar 2020 07:04:25 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> How to upload your similar results? Can you show me how to do that? I need to know to post a question with an example to get the results I want soon</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51229</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51229</guid><dc:creator><![CDATA[Sarah Duong]]></dc:creator><pubDate>Sun, 08 Mar 2020 07:04:25 GMT</pubDate></item><item><title><![CDATA[Reply to mark and remove on Sat, 07 Mar 2020 17:05:29 GMT]]></title><description><![CDATA[<p dir="auto">Hi, <a class="plugin-mentions-user plugin-mentions-a" href="/user/gulab-borkar" aria-label="Profile: gulab-borkar">@<bdi>gulab-borkar</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Ah… <strong>OK</strong> ! You just want lines with <strong>true</strong> words, followed with the <strong>unique</strong> digit <strong><code>1</code></strong>, at <strong>end</strong> of line. Even, the case <strong><code>haslo11</code></strong> must <strong>not</strong> be in the <strong>output</strong> text !</p>
<p dir="auto">If so, use the following <strong>regex</strong> S/R :</p>
<p dir="auto">SEARCH <strong><code>(?i-s)^.+(?&lt;!\u1)\R</code></strong></p>
<p dir="auto">REPLACE <strong><code>Leave EMPTY</code></strong></p>
<p dir="auto"><strong>Notes</strong> :</p>
<ul>
<li>
<p dir="auto">The <strong>first</strong> part <strong><code>(?i-s)</code></strong> means that the regex <strong>engine</strong> :</p>
<ul>
<li>
<p dir="auto">Runs the search process in a <strong>insensitive</strong> way , <strong><code>(?i)</code></strong></p>
</li>
<li>
<p dir="auto">Considers that any <strong>dot</strong> <strong><code>.</code></strong> matches a <strong>single standard</strong> character ( and <strong>not</strong> the <strong>EOL</strong> chars ! ) , <strong><code>(?-s)</code></strong></p>
</li>
</ul>
</li>
<li>
<p dir="auto">Then, the part <strong><code>.+</code></strong> matches <strong>all standard</strong> characters of <strong>each</strong> line, but <em>ONLY IF</em> …</p>
</li>
<li>
<p dir="auto">The <strong>end</strong> of line is <strong>preceded</strong> with a <strong>letter</strong>, whatever its <strong>case</strong>, and the <strong>digit <code>1</code></strong>, due to the <strong>negative look-behind</strong>, which looks <strong>backward</strong> from the <strong>EOL</strong> location !</p>
</li>
</ul>
<p dir="auto">You should get the <strong>expected</strong> text, below :</p>
<pre><code class="language-diff">mateusz1
polska1
bartek1
kacper1
kamil1
kasia1
haslo1
damian1
justyna1
marcin1
karolina1
qwerty1
klaudia1
marek1
patryk1
komputer1
mamusia1
samsung1
dawid1
maciek1
misiek1
piotrek1
agnieszka1
karol1
michal1
monika1
dominik1
pawel1
kochanie1
lukasz1
natalia1
patrycja1
paulina1
weronika1
martyna1
dawidek1
wiktoria1
adrian1
mariusz1
tomek1
wojtek1
ewelina1
poczta1
aleksandra1
</code></pre>
<hr />
<p dir="auto">BTW, in your <strong>output</strong> text, you <strong>wrongly</strong> added the line <strong><code>master</code></strong> and forgot the <strong>last correct</strong> line <strong><code>aleksandra1</code></strong> ;-))</p>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51218</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51218</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sat, 07 Mar 2020 17:05:29 GMT</pubDate></item><item><title><![CDATA[Reply to mark and remove on Sat, 07 Mar 2020 15:40:28 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 />
this not work for this list<br />
mateusz1<br />
polska1<br />
marcin<br />
123qwe<br />
qwerty123<br />
bnmqxztv123<br />
polska123<br />
bartek1<br />
kacper123<br />
lol123<br />
monika<br />
mateusz<br />
kacper1<br />
kamil123<br />
kamil1<br />
kasia1<br />
1q2w3e4r<br />
polska12<br />
haslo1<br />
myszka<br />
damian1<br />
justyna1<br />
marcin1<br />
attila6685<br />
piotrek<br />
agnieszka<br />
karolina1<br />
qwerty1<br />
bartek<br />
klaudia1<br />
1qaz2wsx<br />
karolina<br />
marek1<br />
misiaczek<br />
patryk1<br />
komputer1<br />
mamusia1<br />
samsung1<br />
dawid1<br />
kacper<br />
maciek1<br />
matrix<br />
patryk<br />
samsung<br />
michal<br />
misiek1<br />
piotrek1<br />
wojtek<br />
adrian<br />
agnieszka1<br />
haslo11<br />
karol1<br />
lolek123<br />
maciek<br />
michal1<br />
monika1<br />
natalia<br />
daniel<br />
dominik1<br />
haslo123<br />
pawel1<br />
qwerty12<br />
123qweasdaf<br />
1qazxsw2<br />
kasia<br />
kochanie1<br />
lukasz1<br />
master<br />
natalia1<br />
patrycja1<br />
paulina1<br />
weronika1<br />
bartek123<br />
dupa123<br />
kacper12<br />
lukasz<br />
maciek123<br />
mariusz<br />
martyna1<br />
q1w2e3r4<br />
adrian123<br />
asd123<br />
dawid123<br />
dawidek1<br />
jordan23<br />
wiktoria1<br />
1q2w3e<br />
adrian1<br />
barcelona<br />
komputer<br />
mariusz1<br />
michal123<br />
niunia<br />
pawel123<br />
tomek<br />
tomek1<br />
widzew1910<br />
wojtek1<br />
12qwaszx<br />
dragon<br />
ewelina1<br />
konrad<br />
misiek123<br />
poczta1<br />
1q2w3e4r5t<br />
aleksandra1<br />
damian<br />
dominika<br />
dorota<br />
kochanie</p>
<p dir="auto">and  i will see result  in output<br />
mateusz1<br />
polska1<br />
bartek1<br />
kacper1<br />
kamil1<br />
kasia1<br />
haslo1<br />
damian1<br />
justyna1<br />
marcin1<br />
karolina1<br />
qwerty1<br />
klaudia1<br />
marek1<br />
patryk1<br />
komputer1<br />
mamusia1<br />
samsung1<br />
dawid1<br />
maciek1<br />
misiek1<br />
piotrek1<br />
agnieszka1<br />
karol1<br />
michal1<br />
monika1<br />
dominik1<br />
pawel1<br />
kochanie1<br />
lukasz1<br />
master<br />
natalia1<br />
patrycja1<br />
paulina1<br />
weronika1<br />
martyna1<br />
dawidek1<br />
wiktoria1<br />
adrian1<br />
mariusz1<br />
tomek1<br />
wojtek1<br />
ewelina1<br />
poczta1</p>
<p dir="auto">i will find in list  all word with 4 to 8charecter + number 1 just all word+1</p>
<p dir="auto">example:<br />
China1<br />
and not in my result example : 1China or china123 or ch1na1 only word full+ number 1</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51217</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51217</guid><dc:creator><![CDATA[Gulab Borkar]]></dc:creator><pubDate>Sat, 07 Mar 2020 15:40:28 GMT</pubDate></item><item><title><![CDATA[Reply to mark and remove on Sat, 07 Mar 2020 10:00:05 GMT]]></title><description><![CDATA[<p dir="auto">Hi, <a class="plugin-mentions-user plugin-mentions-a" href="/user/gulab-borkar" aria-label="Profile: gulab-borkar">@<bdi>gulab-borkar</bdi></a>, <a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">I think that <a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: ekopalypse">@<bdi>ekopalypse</bdi></a>, inadvertently, forgot to include the <strong>EOL</strong> characters of lines to <strong>delete</strong> ;-))</p>
<p dir="auto">So , here is my version :</p>
<p dir="auto">SEARCH <strong><code>^[^\d\r\n]+\d{2,}\R</code></strong></p>
<p dir="auto">REPLACE <strong><code>Leave EMPTY</code></strong></p>
<ul>
<li>
<p dir="auto">Tick the <strong><code>Wrap around</code></strong> option, if necessary</p>
</li>
<li>
<p dir="auto">Select the <strong><code>Regular expression</code></strong> search mode</p>
</li>
<li>
<p dir="auto">Click <strong>once</strong> on the <strong><code>Replace All</code></strong> or <strong>several</strong> times on the <strong><code>Replace</code></strong> button</p>
</li>
</ul>
<hr />
<p dir="auto"><strong>Notes</strong> :</p>
<ul>
<li>
<p dir="auto">From <strong>beginning</strong> of lines ( <strong><code>^</code></strong> ), it looks for a <strong>greatest non-null</strong> range of chars, all <strong>different</strong> from a <strong>digit</strong> and <strong>EOL</strong> chars ( <strong><code>[^\d\r\n]+</code></strong> )</p>
</li>
<li>
<p dir="auto">Followed with, <strong>at least, two</strong> digits ( <strong><code>\d{2,}</code></strong> ) and the <strong>EOL</strong> characters of <strong>current</strong> line (<strong><code>\R</code></strong> )</p>
</li>
<li>
<p dir="auto">As the <strong>Replacement</strong> zone is <strong><code>EMPTY</code></strong>, then these <strong>entire</strong> lines are <strong>deleted</strong></p>
</li>
</ul>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
<p dir="auto"><strong>P.S.</strong> :</p>
<p dir="auto">Fundamentally, this <strong>regex</strong> S/R <strong>deletes</strong> any line, <strong>ending</strong> with <strong>more</strong> than <strong><code>1</code></strong> <strong>digit</strong> !</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51215</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51215</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sat, 07 Mar 2020 10:00:05 GMT</pubDate></item><item><title><![CDATA[Reply to mark and remove on Sat, 07 Mar 2020 07:54:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a></p>
<p dir="auto">Dear friend in this list i just want to copy and paste the words 1 have like admin1 and i don’t want Admin123 in the list just words with one number</p>
<p dir="auto">mylist:<br />
daniel1<br />
Marcni11<br />
dominik1<br />
majka1<br />
aadrian21<br />
Adam123</p>
<p dir="auto">I want the result to be like this</p>
<p dir="auto">daniel1<br />
dominik1<br />
majka1</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51213</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51213</guid><dc:creator><![CDATA[Gulab Borkar]]></dc:creator><pubDate>Sat, 07 Mar 2020 07:54:38 GMT</pubDate></item><item><title><![CDATA[Reply to mark and remove on Fri, 06 Mar 2020 12:12:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/gulab-borkar" aria-label="Profile: Gulab-Borkar">@<bdi>Gulab-Borkar</bdi></a> said in <a href="/post/51174">mark and remove</a>:</p>
<blockquote>
<p dir="auto">hi guys i have list for example</p>
<p dir="auto">daniel1<br />
Marcni11<br />
dominik1<br />
majka1<br />
aadrian21<br />
Adam123<br />
in notpad when i mark 1 in list notpad mark all word have number 1 i will just mark<br />
word+1 mark and remove<br />
example list resualt</p>
<p dir="auto">daniel1<br />
dominik1<br />
majka1</p>
</blockquote>
<p dir="auto">Is this what you are looking for.<br />
find what:<code>\w+\d(?=\d+).*</code><br />
replace with:<code>EMPTY-NOTHING-TO-ADD</code><br />
select <code>regular expression</code></p>
<p dir="auto">This would delete all words which do have more than one digits in it</p>
<blockquote>
<p dir="auto">and tanks for help me sorry my english bad</p>
</blockquote>
<p dir="auto">Use an online translator. I would recommend <a href="https://www.deepl.com/" rel="nofollow ugc">https://www.deepl.com/</a><br />
if your language is already available but others like<br />
<a href="https://translate.google.com/" rel="nofollow ugc">https://translate.google.com/</a> do get better and better as well.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/51178</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/51178</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Fri, 06 Mar 2020 12:12:20 GMT</pubDate></item></channel></rss>