<?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[find and replace]]></title><description><![CDATA[<p dir="auto">Hello. I have text like this.<br />
3h3s2h2s<br />
3d3h2h2s<br />
3c3h2h2s<br />
And i need replace every 3h 3s …  to that  &lt;img src=“3h.png”&gt;&lt;img src=“3s.png”&gt; …<br />
thank you in advance.</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/17610/find-and-replace</link><generator>RSS for Node</generator><lastBuildDate>Tue, 14 Apr 2026 22:12:59 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/17610.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 May 2019 16:24:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to find and replace on Sat, 11 May 2019 17:24:52 GMT]]></title><description><![CDATA[<p dir="auto">Awesome. thank you!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43232</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43232</guid><dc:creator><![CDATA[Ivan Kuzmich]]></dc:creator><pubDate>Sat, 11 May 2019 17:24:52 GMT</pubDate></item><item><title><![CDATA[Reply to find and replace on Sat, 11 May 2019 17:29:41 GMT]]></title><description><![CDATA[<p dir="auto">welcome to the notepad++ community, <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/15246">@Ivan-Kuzmich</a></p>
<p dir="auto">if you have a text like:</p>
<pre><code>3h3s2h2s
3d3h2h2s
3c3h2h2s
</code></pre>
<p dir="auto">open up the notepad++ menu <code>search &gt; replace</code> and enter the following:</p>
<p dir="auto">search what: <code>([0-9][a-z])</code><br />
replace with: <code>&lt;img src="$1.png"&gt;</code><br />
search mode: <code>regular expression</code></p>
<p dir="auto">then either hit <code>replace</code> to replace every occurrence one by one,<br />
or hit <code>replace all</code> to parse-replace the complete file.</p>
<p dir="auto"><strong>note</strong>: if you have similar conflicting content in your file, select only the part you want to parse-replace and activate <code>in selection</code> before you hit <code>replace all</code>.</p>
<p dir="auto">the result will then be:</p>
<pre><code>&lt;img src="3h.png"&gt;&lt;img src="3s.png"&gt;&lt;img src="2h.png"&gt;&lt;img src="2s.png"&gt;
&lt;img src="3d.png"&gt;&lt;img src="3h.png"&gt;&lt;img src="2h.png"&gt;&lt;img src="2s.png"&gt;
&lt;img src="3c.png"&gt;&lt;img src="3h.png"&gt;&lt;img src="2h.png"&gt;&lt;img src="2s.png"&gt;
</code></pre>
<p dir="auto">if your result differs, we would need a real life example of a part of your file.</p>
<p dir="auto">best regards.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/43229</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/43229</guid><dc:creator><![CDATA[Meta Chuh]]></dc:creator><pubDate>Sat, 11 May 2019 17:29:41 GMT</pubDate></item></channel></rss>