<?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[Help with Regex Search and Replace]]></title><description><![CDATA[<p dir="auto">Hello! I’m trying to fix and neaten some code and what I’d like to be able to do is a global search and replace which replaces:</p>
<p dir="auto">ABC#########WXYZ with ABCWXYZ#########</p>
<p dir="auto">There may be between four and nine numbers in the ########## though I don’t mind having to run it once for each possible quantity of numbers.</p>
<p dir="auto">ABC WXYZ are all letters and in caps. ABC is the same for each group, but WXYZ can be different.</p>
<p dir="auto">the # signs are always representing numbers, and the numbers and letters need to stay the same, just be in a different order.</p>
<p dir="auto">Can any expert out there help me with this?</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19174/help-with-regex-search-and-replace</link><generator>RSS for Node</generator><lastBuildDate>Sun, 13 Sep 2026 16:47:49 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19174.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 07 Apr 2020 21:36:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Help with Regex Search and Replace on Tue, 07 Apr 2020 22:21:38 GMT]]></title><description><![CDATA[<p dir="auto">You are my hero! It looks like this fixed my problem, thank you!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52270</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52270</guid><dc:creator><![CDATA[rderekp]]></dc:creator><pubDate>Tue, 07 Apr 2020 22:21:38 GMT</pubDate></item><item><title><![CDATA[Reply to Help with Regex Search and Replace on Tue, 07 Apr 2020 22:06:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/rderekp" aria-label="Profile: rderekp">@<bdi>rderekp</bdi></a></p>
<p dir="auto">If I understand correctly you are looking for: <code>(ABC)(\d{4,9})([A-Z]{4})</code><br />
and replace with:<code>\1\3\2</code><br />
Make sure you have checked regular expression in replace dialog.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/52267</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/52267</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Tue, 07 Apr 2020 22:06:12 GMT</pubDate></item></channel></rss>