<?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[How find words that match criteria]]></title><description><![CDATA[<p dir="auto">I have a long list of words whereof I want to find specific words that are</p>
<ol>
<li>for example 5 characters long</li>
<li>has some letters that I know and some that I don’t know</li>
</ol>
]]></description><link>https://community.notepad-plus-plus.org/topic/22387/how-find-words-that-match-criteria</link><generator>RSS for Node</generator><lastBuildDate>Wed, 10 Jun 2026 03:48:57 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/22387.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 15 Jan 2022 11:19:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How find words that match criteria on Sat, 15 Jan 2022 15:52:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/minejot1-1" aria-label="Profile: minejot1-1">@<bdi>minejot1-1</bdi></a> said in <a href="/post/73010">How find words that match criteria</a>:</p>
<blockquote>
<p dir="auto">that works</p>
</blockquote>
<p dir="auto">Hmm.  I swear that I have early dementia.<br />
When I tested it out I used a 5-letter-word.<br />
But when I posted, for some reason I changed it to a 6-letter example (“letter”), which would not work the way I wrote it before.</p>
<p dir="auto">So maybe change my prior example to:</p>
<p dir="auto">find: <code>(?=\b\w{6}\b)(?i)l.tt.r</code><br />
mode: regular expression</p>
<p dir="auto">I think you can see how you might adjust it to use any specific number of  characters…</p>
]]></description><link>https://community.notepad-plus-plus.org/post/73011</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/73011</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sat, 15 Jan 2022 15:52:55 GMT</pubDate></item><item><title><![CDATA[Reply to How find words that match criteria on Sat, 15 Jan 2022 15:22:50 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><br />
Hey, that works. Thanks!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/73010</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/73010</guid><dc:creator><![CDATA[MineJOT1 1]]></dc:creator><pubDate>Sat, 15 Jan 2022 15:22:50 GMT</pubDate></item><item><title><![CDATA[Reply to How find words that match criteria on Sat, 15 Jan 2022 15:09:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/minejot1-1" aria-label="Profile: minejot1-1">@<bdi>minejot1-1</bdi></a></p>
<p dir="auto">So the use of “word” implies that you define a word appropriately.  A common definition is characters from the English set A,B,C,…,Z or lowercase, the digits 0,1,2,…9, and the underscore character.  If this is acceptable then for your first question an expression to search on would be:</p>
<p dir="auto">find: <code>\b\w{5}\b</code><br />
mode: regular expression</p>
<p dir="auto">When coupled with your second condition, I might go with a search expression like this one, for the word <code>letter</code> with some letters you don’t know:</p>
<p dir="auto">find: <code>(?=\b\w{5}\b)(?i)l.tt.r</code><br />
mode: regular expression</p>
<p dir="auto">The <code>.</code> would represent the letters you don’t know.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/73008</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/73008</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Sat, 15 Jan 2022 15:09:03 GMT</pubDate></item></channel></rss>