<?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[need help to look for a word]]></title><description><![CDATA[<p dir="auto">so i need to look for a word, lets say the word is interface, it would find it but also it won’t.</p>
<p dir="auto">in the big garble of words in the text file it could look like the below:</p>
<p dir="auto">192.168.1.1;interface<br />
192.168.1.3interface</p>
<p dir="auto">Presently it would find and highlight the word interface from 192.168.1.1;interface but not from 192.168.1.3interface, without the semi colon.</p>
<p dir="auto">What Im trying to get help with is, find any interface name without semi colon in front</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/26806/need-help-to-look-for-a-word</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 15:22:21 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/26806.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 25 Apr 2025 02:05:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to need help to look for a word on Tue, 29 Apr 2025 17:24:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dr-ramaanand" aria-label="Profile: dr-ramaanand">@<bdi>dr-ramaanand</bdi></a> said in <a href="/post/101324">need help to look for a word</a>:</p>
<blockquote>
<p dir="auto">simply because it is easier</p>
</blockquote>
<p dir="auto">That’s apparently a matter of opinion.  To me, negative lookbehind, where it’s telling you “look behind the current position, and make sure it’s not XYZ” is a lot easier to read/understand than “match something, then say, wait no, I don’t actually want to match that, let’s fail this whole path and move on to the alternation”.  (And, from what I can tell, that’s not really a good explanation of skip+fail, because it takes our regex guru pages of text to explain it, whereas I can successfully convey the meaning of a negative lookbehind in one sentence.)</p>
<p dir="auto">Since your first version of the skip+fail post was wrong, and you couldn’t tell this immediately, even after it was pointed out to you that it was wrong, I am not convinced that it’s truly as “simple” – even for you – as you are implying.</p>
<p dir="auto">I am going to stick with recommending solutions that i could explain if necessary; I will only personally link to the skip+fail formula if I know of no other way to do something (and I wouldn’t tell anyone it’s “simple”)</p>
<p dir="auto">But if it truly makes more sense to you than a negative lookbehind, that’s great for you; everyone is different.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/101327</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101327</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 29 Apr 2025 17:24:31 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Tue, 29 Apr 2025 17:10:35 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> If he or anyone else wants to use a negative look behind assertion, he can use the method explained at <a href="https://npp-user-manual.org/docs/searching/#assertions" rel="nofollow ugc">https://npp-user-manual.org/docs/searching/#assertions</a> in which case, he should use the regular expression <code>(?&lt;!;)interface</code> in the Find field, that is, he should select the regular expression mode in the Find/Replace pop up and use <code>(?&lt;!;)interface</code> in the Find field before he hits the Find/Replace button - it will help find <code>interface</code> if it is not preceded by a <code>; (semi-colon)</code>. I gave him the <code>SKIP/FAIL</code> method of finding that word if it was not preceded by a semi-colon simply because it is easier - please see the explanation at <a href="https://community.notepad-plus-plus.org/topic/26812/generic-regex-how-to-use-the-couple-of-backtracking-control-verbs-skip-fail-or-skip-f-in-regexes">https://community.notepad-plus-plus.org/topic/26812/generic-regex-how-to-use-the-couple-of-backtracking-control-verbs-skip-fail-or-skip-f-in-regexes</a> (if one clicks this link, one can see that it is easier especially because it shows the part skipped and the part matched)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/101324</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101324</guid><dc:creator><![CDATA[dr ramaanand]]></dc:creator><pubDate>Tue, 29 Apr 2025 17:10:35 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Tue, 29 Apr 2025 15:16:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dr-ramaanand" aria-label="Profile: dr-ramaanand">@<bdi>dr-ramaanand</bdi></a> said in <a href="/post/101322">need help to look for a word</a>:</p>
<blockquote>
<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> Yes, please check it out on Notepad++</p>
</blockquote>
<p dir="auto"><img src="/assets/uploads/files/1745939234162-ea37eae6-ede6-46a5-bf35-b62ccbead582-image.png" alt="ea37eae6-ede6-46a5-bf35-b62ccbead582-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">It didn’t work.  It found 0 matches, when it should have found one.  Please be careful when giving advice, that it at least does what you claim it does.</p>
<p dir="auto">This is <em>not</em> a situation where you need the complications of skip/fail.  As <a class="plugin-mentions-user plugin-mentions-a" href="/user/alan-kilborn" aria-label="Profile: Alan-Kilborn">@<bdi>Alan-Kilborn</bdi></a> showed, it can be done with a simple non-regex search; if it can be done simply, trying to apply the complicated formula is the wrong thing to do.  Even with regex, it would be easier in this case to use a fixed <s>positive</s> <em>negative</em> lookbehind (since the semicolon is always one character, you don’t need to worry about variable size, so the Boost regex engine can handle th lookbehind just fine), rather than trying to apply the advanced skip/fail.</p>
<hr />
<p dir="auto">To future readers: the post I quoted got changed while I was replying to it.  Sorry that it makes it look like I was making up quotes.  Even after <a class="plugin-mentions-user plugin-mentions-a" href="/user/dr-ramaanand" aria-label="Profile: dr-ramaanand">@<bdi>dr-ramaanand</bdi></a>’s change to his post, my claim that this is <em>not</em> a situation where skip/fail is needed still stands.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/101323</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101323</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Tue, 29 Apr 2025 15:16:53 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Tue, 29 Apr 2025 15:16:52 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> Sorry, that should be <code>;interface(*SKIP)(*FAIL)|interface</code> on Notepad++. I thought I had deleted the last <code>; (semi-colon)</code> but while pasting it above, I pasted it with it</p>
]]></description><link>https://community.notepad-plus-plus.org/post/101322</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101322</guid><dc:creator><![CDATA[dr ramaanand]]></dc:creator><pubDate>Tue, 29 Apr 2025 15:16:52 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Tue, 29 Apr 2025 14:57:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alex-yuan-ca" aria-label="Profile: Alex-Yuan-CA">@<bdi>Alex-Yuan-CA</bdi></a> said:</p>
<blockquote>
<p dir="auto">What Im trying to get help with is, find any interface name without semi colon in front</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dr-ramaanand" aria-label="Profile: dr-ramaanand">@<bdi>dr-ramaanand</bdi></a> said:</p>
<blockquote>
<p dir="auto"><code>;interface(*SKIP)(*FAIL)|;interface</code></p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dr-ramaanand" aria-label="Profile: dr-ramaanand">@<bdi>dr-ramaanand</bdi></a> Does this meet the need?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/101321</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101321</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Tue, 29 Apr 2025 14:57:41 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Tue, 29 Apr 2025 14:50:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alex-yuan-ca" aria-label="Profile: Alex-Yuan-CA">@<bdi>Alex-Yuan-CA</bdi></a> If you open the Find/Replace pop up and select the Regular expression mode at the bottom and type <code>;interface(*SKIP)(*FAIL)|;interface</code> you will find all of them (skipping the preceding <code>;</code>) upon hitting the Find button. An explanation for this method of regular expression (RegEx) can be found at <a href="https://community.notepad-plus-plus.org/topic/26812/generic-regex-how-to-use-the-couple-of-backtracking-control-verbs-skip-fail-or-skip-f-in-regexes">https://community.notepad-plus-plus.org/topic/26812/generic-regex-how-to-use-the-couple-of-backtracking-control-verbs-skip-fail-or-skip-f-in-regexes</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/101320</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101320</guid><dc:creator><![CDATA[dr ramaanand]]></dc:creator><pubDate>Tue, 29 Apr 2025 14:50:36 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Fri, 25 Apr 2025 13:44:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alex-yuan-ca" aria-label="Profile: Alex-Yuan-CA">@<bdi>Alex-Yuan-CA</bdi></a></p>
<p dir="auto">In case you are trying to do any other possible text manipulation, searching, highlighting, etc, etc, or anything you can possibly think of doing to your text, please consult the Notepad++ online user manual, because your answer is probably found there.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/101248</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101248</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 25 Apr 2025 13:44:51 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Fri, 25 Apr 2025 13:41:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alex-yuan-ca" aria-label="Profile: Alex-Yuan-CA">@<bdi>Alex-Yuan-CA</bdi></a> in case you are trying to simply use in-document highlighting instead of the <strong>Find</strong> window, there are similar options in the <strong>Highlighting</strong> section of the <strong>Preferences</strong> window (<strong>Settings &gt; Preferences…</strong>):</p>
<p dir="auto"><img src="/assets/uploads/files/1745588387600-0b92083d-6823-4bf6-add0-9955c21e618f-image.png" alt="0b92083d-6823-4bf6-add0-9955c21e618f-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/101247</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101247</guid><dc:creator><![CDATA[mathlete2]]></dc:creator><pubDate>Fri, 25 Apr 2025 13:41:08 GMT</pubDate></item><item><title><![CDATA[Reply to need help to look for a word on Fri, 25 Apr 2025 10:11:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alex-yuan-ca" aria-label="Profile: Alex-Yuan-CA">@<bdi>Alex-Yuan-CA</bdi></a> said in <a href="/post/101237">need help to look for a word</a>:</p>
<blockquote>
<p dir="auto">find and highlight the word interface from 192.168.1.1;interface but not from 192.168.1.3interface,</p>
</blockquote>
<p dir="auto">You probably have this setting checkmarked:</p>
<p dir="auto"><img src="/assets/uploads/files/1745575762284-391aa5f3-91fa-47d5-aaae-698b6fb2efdf-image.png" alt="391aa5f3-91fa-47d5-aaae-698b6fb2efdf-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Uncheckmark it.</p>
<hr />
<p dir="auto">The software sometimes even gives you instruction about this:</p>
<p dir="auto"><img src="/assets/uploads/files/1745575851419-d6a5c33d-1261-45df-8a7b-ba1eae65e5ad-image.png" alt="d6a5c33d-1261-45df-8a7b-ba1eae65e5ad-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.notepad-plus-plus.org/post/101242</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/101242</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Fri, 25 Apr 2025 10:11:18 GMT</pubDate></item></channel></rss>