<?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 with - question for advance formating]]></title><description><![CDATA[<p dir="auto">Hi.<br />
Have an issue - need to do bulk update on all open files which is easy but the problem is that I have date time expression dot separated and need for date to separate it with slash so it looks like this:<br />
“Value”: “19.01.2022 21:48:18”</p>
<p dir="auto">I would like to replace it with I think regular expression so it would look like that after transformation:<br />
“Value”: “19/01/2022 21:48:18”</p>
<p dir="auto">Wanted to use regular option to replace with shortcut of ctrl+h</p>
<p dir="auto">Don’t know if this is possible and what to put as Replace with to get the expected result.<br />
Any one any idea how to sort it out&gt; If not with that option maybe with command line etc.</p>
<p dir="auto">I’m on windows without option to use any other system like linux.</p>
<p dir="auto">Would be grateful if anyone would be able to help.<br />
Thank you in advance!</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/25173/replace-with-question-for-advance-formating</link><generator>RSS for Node</generator><lastBuildDate>Wed, 12 Aug 2026 15:34:10 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/25173.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 27 Nov 2023 00:39:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Replace with - question for advance formating on Tue, 05 Dec 2023 08:59:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/coises" aria-label="Profile: Coises">@<bdi>Coises</bdi></a> Thank you - it did the work perfectly!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/90949</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/90949</guid><dc:creator><![CDATA[Dafidov_Poland]]></dc:creator><pubDate>Tue, 05 Dec 2023 08:59:39 GMT</pubDate></item><item><title><![CDATA[Reply to Replace with - question for advance formating on Mon, 27 Nov 2023 00:54:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dafidov_poland" aria-label="Profile: Dafidov_Poland">@<bdi>Dafidov_Poland</bdi></a> said in <a href="/post/90780">Replace with - question for advance formating</a>:</p>
<blockquote>
<p dir="auto">“Value”: “19.01.2022 21:48:18”</p>
<p dir="auto">I would like to replace it with I think regular expression so it would look like that after transformation:<br />
“Value”: “19/01/2022 21:48:18”</p>
</blockquote>
<p dir="auto">The basic idea is to use <em>capture groups</em> — each group parenthesized in the find expression corresponds to a numbered group, <strong>$<em>n</em></strong>,  in the replacement:</p>
<p dir="auto"><strong>Find what : <code>(\d\d)\.(\d\d)\.(\d\d\d\d)</code></strong><br />
<strong>Replace with : <code>$1/$2/$3</code></strong></p>
<p dir="auto">If all dates, and only dates,consist of two digits, a period, two digits, a period, and four digits, that’s all you need.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/90781</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/90781</guid><dc:creator><![CDATA[Coises]]></dc:creator><pubDate>Mon, 27 Nov 2023 00:54:52 GMT</pubDate></item></channel></rss>