<?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 every line contains less than 3 dots]]></title><description><![CDATA[<p dir="auto">i have a list of ip, but i want to mark every line which contains less than 3 dots(.)</p>
<p dir="auto">example:<br />
220.108.104.67<br />
220.132.126<br />
220.135.237.66<br />
220.135.254.94<br />
220.181.7<br />
220.181.19.65<br />
220.181.19.87</p>
<p dir="auto">result:<br />
i want the line 2 and 5 to be marked(220.181.7 and 220.132.126)</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19823/mark-every-line-contains-less-than-3-dots</link><generator>RSS for Node</generator><lastBuildDate>Sun, 10 May 2026 04:27:15 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19823.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 08 Aug 2020 07:33:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mark every line contains less than 3 dots on Sat, 08 Aug 2020 08:24:30 GMT]]></title><description><![CDATA[<p dir="auto">thanks, guys it worked, both of your solutions worked</p>
]]></description><link>https://community.notepad-plus-plus.org/post/56601</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/56601</guid><dc:creator><![CDATA[Mohammed Asif]]></dc:creator><pubDate>Sat, 08 Aug 2020 08:24:30 GMT</pubDate></item><item><title><![CDATA[Reply to Mark every line contains less than 3 dots on Sat, 08 Aug 2020 08:19:52 GMT]]></title><description><![CDATA[<p dir="auto">The easy way is to mark all lines with three dots then to invert the bookmarks.</p>
<p dir="auto">Open the mark dialogue, ensure “Regular expressions” and “Bookmark line” are selected and that “Dot matches newline is not selected”. Enter the regular expression</p>
<pre><code>\..*\..*\.
</code></pre>
<p dir="auto">then click “Mark all”.<br />
The final step is to use menu =&gt; Search =&gt; Bookmark =&gt; Inverse bookmark.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/56600</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/56600</guid><dc:creator><![CDATA[AdrianHHH]]></dc:creator><pubDate>Sat, 08 Aug 2020 08:19:52 GMT</pubDate></item><item><title><![CDATA[Reply to Mark every line contains less than 3 dots on Sat, 08 Aug 2020 08:17:00 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="/user/mohammed-asif" aria-label="Profile: mohammed-asif">@<bdi>mohammed-asif</bdi></a> and <strong>All</strong>,</p>
<p dir="auto">Very <strong>easy</strong> with regexes !</p>
<ul>
<li>
<p dir="auto">Open the <strong>Mark</strong> dialog ( <strong><code>Ctrl + M</code></strong> )</p>
</li>
<li>
<p dir="auto">SEARCH <strong><code>^\d{1,3}\.\d{1,3}\.\d{1,3}$</code></strong></p>
</li>
<li>
<p dir="auto"><strong>Tick</strong> the <strong><code>Bookmark line</code></strong> option and, preferably, the <strong><code>Wrap around</code></strong> option</p>
</li>
<li>
<p dir="auto">Select the <strong><code>Regular expression</code></strong> search mode</p>
</li>
<li>
<p dir="auto">Hit the <strong><code>Mark All</code></strong> button</p>
</li>
</ul>
<p dir="auto">Voila !</p>
<p dir="auto">An alternate syntax, using a <strong>subroutine call</strong> to <strong>group <code>1</code></strong>, would be :</p>
<p dir="auto">SEARCH <strong><code>^(\d{1,3})(\.(?1)){2}$</code></strong></p>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/56599</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/56599</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sat, 08 Aug 2020 08:17:00 GMT</pubDate></item></channel></rss>