<?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[Need help please]]></title><description><![CDATA[<p dir="auto">say for exapmple I have this<br />
user:email:pass<br />
user:email:pass<br />
I want to extract email:pass from every line to be like this<br />
email:pass<br />
email:pass</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/22199/need-help-please</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Jul 2026 20:51:22 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/22199.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 28 Nov 2021 21:35:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Need help please on Sun, 28 Nov 2021 22:23:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wahlla-magla" aria-label="Profile: wahlla-magla">@<bdi>wahlla-magla</bdi></a> said in <a href="/post/71663">Need help please</a>:</p>
<blockquote>
<p dir="auto">I want to extract email:pass from every line to be like this</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/peterjones" aria-label="Profile: PeterJones">@<bdi>PeterJones</bdi></a> had the right idea, it’s always difficult when not actually able to test a solution and in this case his will actually erase both <em><strong>user</strong></em> and <em><strong>email</strong></em> fields.<br />
Instead try<br />
Find What:<code>(?-s)^.*?:(.+\R?)</code><br />
Replace With:<code>\1</code></p>
<p dir="auto">As it’s a regular expression you must have the search mode set to <em><strong>regular expression</strong></em>.</p>
<p dir="auto">Terry</p>
]]></description><link>https://community.notepad-plus-plus.org/post/71666</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/71666</guid><dc:creator><![CDATA[Terry R]]></dc:creator><pubDate>Sun, 28 Nov 2021 22:23:43 GMT</pubDate></item><item><title><![CDATA[Reply to Need help please on Sun, 28 Nov 2021 22:12:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wahlla-magla" aria-label="Profile: wahlla-magla">@<bdi>wahlla-magla</bdi></a> ,</p>
<p dir="auto">I am on my phone, so cannot verify, but it would be something like <code>^.*?:</code> and replace with nothing, in regular expression mode</p>
<p dir="auto">(This means search from beginning of the line and any characters up to and including the first colon, and replace with nothing.  The Read This Post First and FAQ section will provide links to more info on regular expression search/replace)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/71665</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/71665</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Sun, 28 Nov 2021 22:12:27 GMT</pubDate></item></channel></rss>