<?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[Hi Users i need to search some word betwen words]]></title><description><![CDATA[<p dir="auto">I will try to tell You what I mean with an example. I need to search some phrases between words or numbers for example:</p>
<p dir="auto"><strong>04</strong> 01 <strong>04</strong> 02 <strong>04</strong> 03 <strong>04</strong> 05 <strong>04</strong> 06 <strong>04</strong> 07 <strong>04</strong></p>
<p dir="auto">I want to find 01 02 03 04 05 06 07 hided betwen <strong>04</strong> so how to find it?</p>
<p dir="auto">Or another example I would like to find this digits 01 02 03 04 05 06 07 hided betwen <strong>28</strong> but I don’t know this <strong>28</strong> number or <strong>04</strong> from an top example.</p>
<p dir="auto"><strong>28</strong> 01 <strong>28</strong> 02 <strong>28</strong> 03 <strong>28</strong> 05 <strong>28</strong> 06 <strong>28</strong> 07 <strong>28</strong></p>
]]></description><link>https://community.notepad-plus-plus.org/topic/22311/hi-users-i-need-to-search-some-word-betwen-words</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Jul 2026 23:41:16 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/22311.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 28 Dec 2021 16:53:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Hi Users i need to search some word betwen words on Tue, 28 Dec 2021 18:49:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jan-kobiela" aria-label="Profile: jan-kobiela">@<bdi>jan-kobiela</bdi></a> said in <a href="/post/72410">Hi Users i need to search some word betwen words</a>:</p>
<blockquote>
<p dir="auto">I need to search some phrases between words or numbers for example:</p>
</blockquote>
<p dir="auto">Your examples don’t really fit your explanation, however I will attempt to provide some information and also ask further questions.</p>
<p dir="auto">When you say you want to search for “phrases” this generally means strings of characters delimited by a space, these can also be called sentences of portions of them. Yet your example has only numbers which doesn’t really help.</p>
<p dir="auto">As it would seem that you want every second word/string of characters it implies the space character MUST be the delimiter. If so then the following would suffice. As this initial solution is destructive you would need to work on a copy of your file, not the original.</p>
<p dir="auto">Use the “Replace” function and as this is a regular expression you will need to have the search mode set to “regular expression”.<br />
Find What:<code>[^\x20\r\n]+\x20([^\x20+\r\n]+)</code><br />
Replace With:<code>\1</code><br />
Then click on the “Replace All” button. Every second word will remain.</p>
<p dir="auto">As I said, this is likely only an initial answer. If you were to read the `Please Read This Before Posting" at the top of this group you will then know how to properly provide examples, and you should provide better examples as currently your example and question are too vague to be sure that my answer will actually help.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/72415</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/72415</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Tue, 28 Dec 2021 18:49:14 GMT</pubDate></item></channel></rss>