<?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[Replace specific number and letter]]></title><description><![CDATA[<p dir="auto">Hello<br />
‘Blue1’:	    ‘0010001000100011’,<br />
‘Orange1’:   ‘1000100010001000’<br />
I want to replace number 1 with letter a  but I don’t want to change Blue1 and Orange1 text.<br />
If I use<br />
Find: \d(‘1)<br />
Replace: a<br />
the first number ‘1 and the last number 1’ doesn’t change because there is this symbol (’)… Any solution…? Thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19423/replace-specific-number-and-letter</link><generator>RSS for Node</generator><lastBuildDate>Wed, 11 Mar 2026 09:29:12 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19423.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 18 May 2020 17:36:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Replace specific number and letter on Mon, 18 May 2020 23:10:52 GMT]]></title><description><![CDATA[<p dir="auto">Thanks a lot guy038! This is exactly what I was looking for!!!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/54050</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/54050</guid><dc:creator><![CDATA[Alexandros Xatzidimitriou]]></dc:creator><pubDate>Mon, 18 May 2020 23:10:52 GMT</pubDate></item><item><title><![CDATA[Reply to Replace specific number and letter on Mon, 18 May 2020 21:32:36 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/18660">@alexandros-xatzidimitriou</a>, and <strong>All</strong>,</p>
<p dir="auto">Do you mean this kind of replacement ? :</p>
<ul>
<li><strong>Initial</strong> text :</li>
</ul>
<pre><code class="language-diff">'Blue1': '0010001000100011',
'Orange1': '1000100010001000'
</code></pre>
<ul>
<li>
<p dir="auto">SEARCH <strong><code>1(?!':)</code></strong></p>
</li>
<li>
<p dir="auto">REPLACE <strong><code>a</code></strong></p>
</li>
<li>
<p dir="auto"><strong>Final</strong> text :</p>
</li>
</ul>
<pre><code class="language-diff">'Blue1': '00a000a000a000aa',
'Orange1': 'a000a000a000a000'
</code></pre>
<hr />
<p dir="auto"><strong>Notes</strong> :</p>
<ul>
<li>
<p dir="auto">The <strong>search</strong> regex looks for a <strong><code>1</code></strong> digit, <em>ONLY IF NOT</em>  <strong>followed</strong> with the string <strong><code>':</code></strong>  and <strong>replaces</strong> it with the <strong>lowercase</strong> letter <strong><code>a</code></strong></p>
</li>
<li>
<p dir="auto">The <strong><code>(?!.......)</code></strong> syntax is a <strong>negative look-ahead</strong> structure</p>
</li>
</ul>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/54014</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/54014</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Mon, 18 May 2020 21:32:36 GMT</pubDate></item></channel></rss>