<?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 &#x2F; character after speciffic word]]></title><description><![CDATA[<p dir="auto">Hello to everyone.<br />
Can someone please help me achieving this in notepad++ :</p>
<p dir="auto">from this<br />
url://dns1:8080/get.php?username=pablo/abcdxx&amp;type=m3u<br />
url://dns7:8080/get.php?username=nadia/werdftd&amp;type=m3u<br />
url://dns3:8080/get.php?username=sofia/aduduew&amp;type=m3u</p>
<p dir="auto">to this</p>
<p dir="auto">url://dns1:8080/get.php?username=pablo&amp;password=abcdxx&amp;type=m3u<br />
url://dns7:8080/get.php?username=nadia&amp;password=werdftd&amp;type=m3u<br />
url://dns3:8080get.php?username=sofia&amp;password=aduduew&amp;type=m3u</p>
<p dir="auto">that would be to replace  “/”  (found after word  “username=” and before word “&amp;type”) with “&amp;password=” in all lines.</p>
<p dir="auto">thank you</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/26137/replace-character-after-speciffic-word</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 22:23:07 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/26137.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 22 Sep 2024 08:22:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to replace &#x2F; character after speciffic word on Sun, 22 Sep 2024 09:42:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/195">@guy038</a> said in <a href="/post/96720">replace / character after speciffic word</a>:</p>
<blockquote>
<p dir="auto">/(?=[^/\r\n]+&amp;type)</p>
</blockquote>
<p dir="auto">Thank you very much.work as needed.<br />
no,i don’t think other then words/numbers in password are used. just to make sure added some and used second option,worked as needed to.<br />
Thank you again,this topic can be closed.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/96722</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/96722</guid><dc:creator><![CDATA[Vio Vio]]></dc:creator><pubDate>Sun, 22 Sep 2024 09:42:01 GMT</pubDate></item><item><title><![CDATA[Reply to replace &#x2F; character after speciffic word on Sun, 22 Sep 2024 09:05:44 GMT]]></title><description><![CDATA[<p dir="auto">Hello, <a class="plugin-mentions-user plugin-mentions-a" href="https://community.notepad-plus-plus.org/uid/31755">@vio-vio</a> and <strong>All</strong>,</p>
<p dir="auto">Here my solution :</p>
<ul>
<li>
<p dir="auto">Open the <strong>Replace</strong> dialog ( <strong><code>Ctrl + H</code></strong> )</p>
</li>
<li>
<p dir="auto"><strong>Uncheck</strong> all <strong>box</strong> options</p>
</li>
<li>
<p dir="auto">SEARCH <strong><code>/(?=\w+&amp;type)</code></strong></p>
</li>
<li>
<p dir="auto">REPLACE <strong><code>&amp;password=</code></strong></p>
</li>
<li>
<p dir="auto">If necessary, check the <strong><code>Wrap around</code></strong> option</p>
</li>
<li>
<p dir="auto">Check the <strong><code>Regular expression</code></strong>  option</p>
</li>
<li>
<p dir="auto">Click on the <strong><code>Replace All</code></strong> button</p>
</li>
</ul>
<hr />
<p dir="auto">I assume that <strong>all</strong> the passwords are <strong>only</strong> composed of <strong>letters</strong>, as shown in your example. If <strong>not</strong>, just tell me which <strong>non</strong>-letters chars may be part of a <strong>password</strong> !</p>
<p dir="auto">You may also try this <strong>second</strong> search expression which allows any char, <strong>other</strong> than the <strong><code>/</code></strong> and the <strong>EOL</strong> characters, as password char !</p>
<ul>
<li>SEARCH <strong><code>/(?=[^/\r\n]+&amp;type)</code></strong></li>
</ul>
<p dir="auto">Best Regards,</p>
<p dir="auto">guy038</p>
]]></description><link>https://community.notepad-plus-plus.org/post/96720</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/96720</guid><dc:creator><![CDATA[guy038]]></dc:creator><pubDate>Sun, 22 Sep 2024 09:05:44 GMT</pubDate></item></channel></rss>