<?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[Regex: Find all html links that have minimum 3 letters after .com/]]></title><description><![CDATA[<p dir="auto">hello, I wanna find all links that have minimum 3 letters after <code>.com/</code></p>
<p dir="auto">for example:<br />
<code>https://website.com/enigma-one.html</code></p>
<p dir="auto">and this one below (that I need to find)</p>
<p dir="auto"><code>https://website.com/ens</code></p>
<p dir="auto">I try this formula, but it doesn’t work:</p>
<p dir="auto">SEARCH: <code>https://website.com/\w{0,3)</code></p>
]]></description><link>https://community.notepad-plus-plus.org/topic/22268/regex-find-all-html-links-that-have-minimum-3-letters-after-com</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 09:31:46 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/22268.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Dec 2021 10:43:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Regex: Find all html links that have minimum 3 letters after .com/ on Wed, 15 Dec 2021 14:05:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/neil-schipper" aria-label="Profile: neil-schipper">@<bdi>neil-schipper</bdi></a> thanks.</p>
<p dir="auto">WORKS:</p>
<p dir="auto">Regex Search: <code>https://website\.com/en\w{1,}</code></p>
]]></description><link>https://community.notepad-plus-plus.org/post/72123</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/72123</guid><dc:creator><![CDATA[Hellena Crainicu]]></dc:creator><pubDate>Wed, 15 Dec 2021 14:05:08 GMT</pubDate></item><item><title><![CDATA[Reply to Regex: Find all html links that have minimum 3 letters after .com/ on Wed, 15 Dec 2021 12:52:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/hellena-crainicu" aria-label="Profile: hellena-crainicu">@<bdi>hellena-crainicu</bdi></a> said in <a href="/post/72114">Regex: Find all html links that have minimum 3 letters after .com/</a>:</p>
<blockquote>
<p dir="auto">minimum 3 letters after .com/</p>
</blockquote>
<blockquote>
<p dir="auto">\w{0,3)</p>
</blockquote>
<p dir="auto">The <code>{a,b}</code> syntax is to specify a min and a max.</p>
<p dir="auto">Use <code>{3,}</code> for a min of 3, and no max.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/72118</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/72118</guid><dc:creator><![CDATA[Neil Schipper]]></dc:creator><pubDate>Wed, 15 Dec 2021 12:52:36 GMT</pubDate></item></channel></rss>