<?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[how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY]]></title><description><![CDATA[<p dir="auto">Morning there… i am Too much newie about notepad ++ i have tons of data to convert and this is a big trouble for me…<br />
my files are a unique file every line starting with something like<br />
5/17/2022 4:59:59 PM —<br />
8/19/2022 6:59:59 PM —<br />
11/19/2022 3:59:59 AM<br />
2/15/2023 5:59.59 PM —<br />
5/17/2023 10:59:59 PM<br />
8/20/2023 12:59:59 AM<br />
11/19/2023 9:59:59 AM<br />
2/15/2024 11:59:59 PM<br />
9/17/2024 4:59:59 AM 5<br />
8/19/2024 6:59:59 AM —<br />
11/18/2024 2:59:59 PM<br />
2/15/2025 5:59:59 AM 3<br />
5/17/2018 5:59.59 PM 5<br />
8/19/2018 7:59.59 PM 1<br />
11/19/2018 3:59.59 AM<br />
2/15/2019 6:59:59 PM —<br />
5/17/2019 11:59:59 PM<br />
8/20/2019 1:59:59 AM —<br />
so is the date is MONTH/DAY/YEAR and is not back to the 19xx will be only in the future… i need two options with notepad++:<br />
1- is possible to use notepad++ to SORT all dates MANTAINING the actual for… but put in order… so<br />
with this format it will sort BY DATE then look for month and year  OR<br />
2- is possible to Switch the actual format into  DD/MONTH/YEAR mantaining the proper number (so remains 20/8/2019 and not 20/08/19)<br />
According with the post:<br />
<a href="https://community.notepad-plus-plus.org/topic/12834/how-to-change-date-format-from-from-mm-dd-yy-to-dd-mm-yyyy/3">solution about 2 digit year</a><br />
I saw is possible … but i have the end of the year in 4 digit instead 2 so the solution given by<br />
<a href="https://community.notepad-plus-plus.org/user/guy038">guy038</a> is not suitable for my needs…</p>
<p dir="auto">I REALLY NEED please … or First solution or Second solution… i need to SORT this huge file with notepad ++<br />
and i have no clue… Thanks in advance</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/19582/how-to-change-date-format-from-from-mm-dd-yyyy-to-dd-mm-yyyy</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 19:33:10 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/19582.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 20 Jun 2020 13:07:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 15:10:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a> said in <a href="/post/55206">how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY</a>:</p>
<blockquote>
<p dir="auto">$2, $3 and $1 refer to the respective groups<br />
captured by (\d{4})/(\d{1,2})/(\d{1,2})<br />
The () is what makes a group, so $1<br />
refers to what has matched by (\d{4}), $2 the next<br />
group and $3 the last group.<br />
Rearrange the $X in $2/$3/$1 and you will see how it will change.</p>
</blockquote>
<p dir="auto">Was REALLY a pleasure… thanks really …REALLY Appreciate!</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55207</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55207</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 15:10:16 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 15:01:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lorenzo-atom" aria-label="Profile: Lorenzo-Atom">@<bdi>Lorenzo-Atom</bdi></a></p>
<p dir="auto"><code>$2, $3 and $1</code> refer to the respective groups<br />
captured by <code>(\d{4})/(\d{1,2})/(\d{1,2})</code><br />
The <code>()</code> is what makes a group, so <code>$1</code><br />
refers to what has matched by <code>(\d{4})</code>, <code>$2</code> the next<br />
group and <code>$3</code> the last group.</p>
<p dir="auto">Rearrange the <code>$X</code> in <code>$2/$3/$1</code> and you will see how it will change.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55206</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55206</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sat, 20 Jun 2020 15:01:06 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:57:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a> said in <a href="/post/55204">how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY</a>:</p>
<blockquote>
<p dir="auto">$3/$1/$2</p>
</blockquote>
<p dir="auto">Seems it works…is in american format… the lst step you give me after i already sort, how can be day/month/year?<br />
Amazing thanks in advance REALLY… REALLY REALLY… is an output of years of studyings… thanks again</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55205</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55205</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:57:01 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:53:22 GMT]]></title><description><![CDATA[<p dir="auto">ok, this means you have a 3 step process, probably it can be recorded as a macro.</p>
<p dir="auto">Step 1 - Convert the format into YEAR/MONTH/DAY<br />
find: <code>^(\d{1,2})/(\d{1,2})/(\d{4})</code><br />
replace: <code>$3/$1/$2</code></p>
<p dir="auto">Step2: - Sort<br />
<code>Edit-&gt;Line operations-&gt;Sort lines as integer ascending</code></p>
<p dir="auto">Step 3: optional, convert date format back to original<br />
find: <code>^(\d{4})/(\d{1,2})/(\d{1,2})</code><br />
replace: <code>$2/$3/$1</code></p>
]]></description><link>https://community.notepad-plus-plus.org/post/55204</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55204</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:53:22 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:47:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a><br />
something like this…<br />
2019.0811<br />
2020.0111<br />
2020.0426<br />
2020.0511<br />
2020.0513<br />
2020.0515<br />
2020.0618<br />
2020.0623<br />
2020.0624<br />
2020.0712<br />
2020.0726<br />
!!!2020<br />
2020.0728<br />
2020.0910<br />
2020.0912<br />
2020.0928<br />
2020.1004<br />
2020.1014<br />
2020.1104<br />
2020.1114<br />
2020.1119<br />
(2020.112<br />
!!!2<br />
2020.1206<br />
2020.1129<br />
2020.1217<br />
2020.1230<br />
2021.0103<br />
2021.0114<br />
(2021.012<br />
2021.01.2<br />
2021.0131<br />
2021.0221<br />
2021.0312<br />
2021.0326<br />
2021.0428<br />
2021.0523<br />
2021.0530<br />
2021.0621<br />
2021.0623<br />
2021.0626<br />
2021.0708<br />
2021.0820<br />
2021.0927<br />
2021.1007<br />
2021.1011<br />
2021.1018<br />
2021.1019<br />
2021.1102<br />
2021.1122<br />
2021.1201<br />
2021.1219<br />
2021.1229<br />
2021.1231<br />
2022.0114<br />
2022.0119<br />
2022.0125<br />
2022.0129<br />
2022.0204<br />
2022.0223<br />
2022.0228<br />
2022.0331<br />
2022.0430<br />
2022.0510<br />
2022.0603<br />
2022.0605<br />
2022.0617<br />
2022.0628<br />
2022.0729<br />
2022.0824<br />
2022.0910<br />
2022.1002<br />
2022.1009<br />
2022.1016<br />
2022.1023<br />
2022.1031<br />
2022.1123<br />
2022.1124<br />
2022.1204<br />
2022.1229<br />
2023.0109<br />
2023.0113<br />
2023.0119<br />
2023.0123<br />
2023.0127<br />
2023.0205<br />
2023.0208<br />
2023.0312<br />
2023.0404<br />
2023.0421<br />
2023.0502<br />
2023.0515<br />
2023.0530<br />
2023.0618<br />
2023.0701<br />
2023.0723<br />
2023.0824<br />
2023.0829<br />
2023.0904<br />
2023.0905<br />
2023.0916<br />
2023.0929<br />
2023.1005<br />
2023.1011<br />
2023.1104<br />
2023.1125<br />
2023.1206<br />
2023.1213<br />
2023.1231<br />
2024.0102<br />
2024.0120<br />
2024.0121<br />
2024.0127<br />
2024.0130<br />
2024.0314<br />
2024.0402<br />
2024.0407<br />
2024.0426<br />
2024.0503<br />
2024.0512<br />
2024.0630<br />
2024.0702<br />
2024.0805<br />
2024.0829<br />
2024.0902<br />
2024.0911<br />
2024.1009<br />
2024.1012<br />
2024.1116<br />
2024.1126<br />
2024.1126<br />
2024.1207<br />
2024.1208<br />
2024.1216<br />
2025.0102<br />
2025.0131<br />
2025.0131<br />
2025.0201<br />
2025.0204<br />
2025.0224<br />
2025.0302<br />
2025.0315<br />
2025.0407<br />
2025.0412<br />
2025.0413<br />
2025.0421<br />
2025.0425<br />
2025.0428<br />
2025.0504<br />
2025.0514<br />
2025.0705<br />
2025.0713<br />
2025.0718<br />
2025.0811</p>
<p dir="auto">the important is that the first check woult be day then month then year… so cronologically…like a calendar…<br />
if you put europen or Us does not matter, but that today must be today!!! haha ))) thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55203</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55203</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:47:45 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:41:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lorenzo-atom" aria-label="Profile: Lorenzo-Atom">@<bdi>Lorenzo-Atom</bdi></a></p>
<p dir="auto">thx for the data, but my question is still open</p>
<blockquote>
<p dir="auto">21/10/2021<br />
26/7/2020<br />
17/12/2021</p>
</blockquote>
<p dir="auto">How do you want it to be sorted?</p>
<blockquote>
<p dir="auto">i am italian…</p>
</blockquote>
<p dir="auto">If I would have taken my lessons more seriously we could do this in Italian but at that time I was just a lazy … :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55202</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55202</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:41:10 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:20:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lorenzo-atom" aria-label="Profile: Lorenzo-Atom">@<bdi>Lorenzo-Atom</bdi></a> said in <a href="/post/55197">how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a><br />
i give part of my actual data:</p>
<p dir="auto">5/17/2033 8:59:58 AM<br />
8/19/2033 10:59:58 AM<br />
11/18/2033 7:59:58 PM<br />
2/15/2034 9:59:58 AM<br />
5/17/2034 2:59:58 PM<br />
8/19/2034 4:59:58 PM<br />
11/19/2034 1:59:58 AM<br />
2/15/2035 3:59:58 PM<br />
5/17/2035 8:59:57 PM<br />
8/19/2035 9:59:57 PM<br />
11/19/2035 6:59:57 AM<br />
2/15/2036 9:59:57 PM<br />
5/17/2036 1:59:57 AM<br />
8/19/2036 3:59:57 AM<br />
11/18/2036 12:59:57 P<br />
2/15/2037 2:59:57 AM<br />
5/17/2037 7:59:57 AM<br />
8/19/2037 9:59:57 AM<br />
11/18/2037 6:59:57 PM<br />
2/15/2038 8:59:57 AM<br />
5/17/2038 1:59:57 PM<br />
8/19/2038 3:59:57 PM<br />
11/19/2038 12:59:57 A<br />
2/15/2039 2:59:57 PM<br />
5/17/2039 7:59:57 PM<br />
8/19/2039 9:59:57 PM<br />
11/19/2039 6:59:57 AM<br />
2/15/2040 8:59:57 PM<br />
5/17/2040 1:59:57 AM<br />
8/19/2040 3:59:57 AM<br />
11/18/2040 12:59:57 P<br />
2/15/2041 2:59:57 AM<br />
5/17/2041 6:59:57 AM<br />
8/19/2041 8:59:57 AM<br />
11/18/2041 5:59:57 PM<br />
2/15/2042 8:59:57 AM<br />
5/17/2042 12:59:57 PM<br />
8/19/2042 2:59:57 PM<br />
11/18/2042 11:59:57 P<br />
2/16/2018  327.264696<br />
5/17/2018 5:59.59 PM<br />
8/19/2018 7:59.59 PM<br />
11/19/2018 3:59.59 AM<br />
2/15/2019 6:59:59 PM<br />
5/17/2019 11:59:59 PM<br />
8/20/2019 1:59:59 AM<br />
11/19/2019 9:59:59 AM<br />
2/15/2020 11:59:59 PM<br />
5/17/2020 5:59:59 AM<br />
8/19/2020 6:59:59 AM<br />
11/18/2020 3:59:59 PM<br />
2/15/2021 5:59.59 AM<br />
5/17/2021 10:59:59 AM<br />
8/19/2021 12:59:59 PM<br />
11/18/2021 9:59:59 PM<br />
2/15/2022 11:59:59 AM<br />
5/17/2022 4:59:59 PM<br />
8/19/2022 6:59:59 PM<br />
11/19/2022 3:59:59 AM<br />
2/15/2023 5:59.59 PM<br />
5/17/2023 10:59:59 PM<br />
8/20/2023 12:59:59 AM<br />
11/19/2023 9:59:59 AM<br />
2/15/2024 11:59:59 PM<br />
9/17/2024 4:59:59 AM<br />
8/19/2024 6:59:59 AM<br />
11/18/2024 2:59:59 PM<br />
2/15/2025 5:59:59 AM<br />
5/17/2025 10:59:59 AM<br />
8/19/2025 11:59:59 AM<br />
11/18/2025 8:59:59 PM<br />
2/15/2026 10:59:59 AM<br />
5/17/2026 3:59:59 PM<br />
8/19/2026 5:59:59 PM<br />
11/19/2026 2:59:58 AM<br />
2/15/2027 4:59:58 PM<br />
5/17/2027 9:59:58 PM<br />
8/19/2027 11:59:58 PM<br />
11/19/2027 8:59:58 AM<br />
2/15/2028 10:59:58 PM<br />
5/17/2028 3:59:58 AM<br />
8/19/2028 5:59:58 AM<br />
11/18/2028 2:59:58 PM<br />
2/15/2029 4:59:58 AM<br />
5/17/2029 9:59:58 AM<br />
8/19/2029 11:59:59 AM<br />
11/18/2029 7:59:58 PM<br />
2/15/2030 10:59:58 AM<br />
5/17/2030 3:59:598 PM<br />
8/19/2030 4:59:58 PM<br />
11/19/2030 1:59:58 AM<br />
2/15/2031 3:59:58 PM<br />
5/17/2031 8:59:58 PM<br />
8/19/2031 10:59:58 PM<br />
11/19/2031 7:59:58 AM<br />
2/15/2032 9:59:58 PM<br />
5/17/2032 2:59:58 AM<br />
8/19/2032 4:59:58 AM<br />
11/18/2032 1:59:58 PM<br />
2/15/2033 3:59:58 AM</p>
<p dir="auto">this data cannot be edited… so we  have month / day / year…<br />
i wish i could sort this in date / month / year<br />
Thanks</p>
</blockquote>
<p dir="auto">When i say cannot be edited i mean that this FORMAT month / day / year came from another program where i cannot do anything so the starting point is month / day / year  i wish i could have ------&gt; day / month/ year… i hope i clarify i bit sorry for my english… i am italian… Thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55200</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55200</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:20:29 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:12:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a><br />
i give part of my actual data:</p>
<p dir="auto">5/17/2033 8:59:58 AM<br />
8/19/2033 10:59:58 AM<br />
11/18/2033 7:59:58 PM<br />
2/15/2034 9:59:58 AM<br />
5/17/2034 2:59:58 PM<br />
8/19/2034 4:59:58 PM<br />
11/19/2034 1:59:58 AM<br />
2/15/2035 3:59:58 PM<br />
5/17/2035 8:59:57 PM<br />
8/19/2035 9:59:57 PM<br />
11/19/2035 6:59:57 AM<br />
2/15/2036 9:59:57 PM<br />
5/17/2036 1:59:57 AM<br />
8/19/2036 3:59:57 AM<br />
11/18/2036 12:59:57 P<br />
2/15/2037 2:59:57 AM<br />
5/17/2037 7:59:57 AM<br />
8/19/2037 9:59:57 AM<br />
11/18/2037 6:59:57 PM<br />
2/15/2038 8:59:57 AM<br />
5/17/2038 1:59:57 PM<br />
8/19/2038 3:59:57 PM<br />
11/19/2038 12:59:57 A<br />
2/15/2039 2:59:57 PM<br />
5/17/2039 7:59:57 PM<br />
8/19/2039 9:59:57 PM<br />
11/19/2039 6:59:57 AM<br />
2/15/2040 8:59:57 PM<br />
5/17/2040 1:59:57 AM<br />
8/19/2040 3:59:57 AM<br />
11/18/2040 12:59:57 P<br />
2/15/2041 2:59:57 AM<br />
5/17/2041 6:59:57 AM<br />
8/19/2041 8:59:57 AM<br />
11/18/2041 5:59:57 PM<br />
2/15/2042 8:59:57 AM<br />
5/17/2042 12:59:57 PM<br />
8/19/2042 2:59:57 PM<br />
11/18/2042 11:59:57 P<br />
2/16/2018  327.264696<br />
5/17/2018 5:59.59 PM<br />
8/19/2018 7:59.59 PM<br />
11/19/2018 3:59.59 AM<br />
2/15/2019 6:59:59 PM<br />
5/17/2019 11:59:59 PM<br />
8/20/2019 1:59:59 AM<br />
11/19/2019 9:59:59 AM<br />
2/15/2020 11:59:59 PM<br />
5/17/2020 5:59:59 AM<br />
8/19/2020 6:59:59 AM<br />
11/18/2020 3:59:59 PM<br />
2/15/2021 5:59.59 AM<br />
5/17/2021 10:59:59 AM<br />
8/19/2021 12:59:59 PM<br />
11/18/2021 9:59:59 PM<br />
2/15/2022 11:59:59 AM<br />
5/17/2022 4:59:59 PM<br />
8/19/2022 6:59:59 PM<br />
11/19/2022 3:59:59 AM<br />
2/15/2023 5:59.59 PM<br />
5/17/2023 10:59:59 PM<br />
8/20/2023 12:59:59 AM<br />
11/19/2023 9:59:59 AM<br />
2/15/2024 11:59:59 PM<br />
9/17/2024 4:59:59 AM<br />
8/19/2024 6:59:59 AM<br />
11/18/2024 2:59:59 PM<br />
2/15/2025 5:59:59 AM<br />
5/17/2025 10:59:59 AM<br />
8/19/2025 11:59:59 AM<br />
11/18/2025 8:59:59 PM<br />
2/15/2026 10:59:59 AM<br />
5/17/2026 3:59:59 PM<br />
8/19/2026 5:59:59 PM<br />
11/19/2026 2:59:58 AM<br />
2/15/2027 4:59:58 PM<br />
5/17/2027 9:59:58 PM<br />
8/19/2027 11:59:58 PM<br />
11/19/2027 8:59:58 AM<br />
2/15/2028 10:59:58 PM<br />
5/17/2028 3:59:58 AM<br />
8/19/2028 5:59:58 AM<br />
11/18/2028 2:59:58 PM<br />
2/15/2029 4:59:58 AM<br />
5/17/2029 9:59:58 AM<br />
8/19/2029 11:59:59 AM<br />
11/18/2029 7:59:58 PM<br />
2/15/2030 10:59:58 AM<br />
5/17/2030 3:59:598 PM<br />
8/19/2030 4:59:58 PM<br />
11/19/2030 1:59:58 AM<br />
2/15/2031 3:59:58 PM<br />
5/17/2031 8:59:58 PM<br />
8/19/2031 10:59:58 PM<br />
11/19/2031 7:59:58 AM<br />
2/15/2032 9:59:58 PM<br />
5/17/2032 2:59:58 AM<br />
8/19/2032 4:59:58 AM<br />
11/18/2032 1:59:58 PM<br />
2/15/2033 3:59:58 AM</p>
<p dir="auto">this data cannot be edited… so we  have month / day / year…<br />
i wish i could sort this in date / month / year<br />
Thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55197</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55197</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:12:49 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:08:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lorenzo-atom" aria-label="Profile: Lorenzo-Atom">@<bdi>Lorenzo-Atom</bdi></a></p>
<p dir="auto">your explanation confuses me.<br />
Let’s take this simple dates</p>
<pre><code class="language-z">21/10/2021
26/7/2020
17/12/2021
</code></pre>
<p dir="auto">How do you want it to be sorted?</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55196</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55196</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:08:39 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 14:04:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ekopalypse" aria-label="Profile: Ekopalypse">@<bdi>Ekopalypse</bdi></a><br />
Thanks for the answer… My goal is to put CRONOLOGICALLY by date this huge file in order…<br />
for order i need from a starting point of month/day/year (i am not able to edit… this is a standard output of another program that give me this output…<br />
the important thing is i will have data in order by date - month - year…<br />
so the first digit be checked must be the day, then the month, then the year for everything (is huge)<br />
i saw there another problem about the day digit… there is no 0 in front of the month… maybe this is another big issue … i have no clue how to use notepad++</p>
<p dir="auto">Thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55195</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55195</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 14:04:35 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 13:50:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lorenzo-atom" aria-label="Profile: Lorenzo-Atom">@<bdi>Lorenzo-Atom</bdi></a></p>
<p dir="auto">to convert from MONTH/DAY/YEAR to DAY/MONTY/YEAR<br />
you might use something like this<br />
find: <code>^(\d{1,2}/)(\d{1,2}/)(?=\d{4})</code><br />
replace: <code>\2\1</code></p>
<p dir="auto">but I assume this will not solve your problem as this<br />
would mean a date like 1st of July 2022 will be sorted<br />
before 2nd of June 2021.<br />
From your explanation I assume that you want to create<br />
a date like YEAR/MONTH/DAY and then sort and maybe<br />
reformat back in the format what you want.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55194</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55194</guid><dc:creator><![CDATA[Ekopalypse]]></dc:creator><pubDate>Sat, 20 Jun 2020 13:50:35 GMT</pubDate></item><item><title><![CDATA[Reply to how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY on Sat, 20 Jun 2020 13:37:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lorenzo-atom" aria-label="Profile: Lorenzo-Atom">@<bdi>Lorenzo-Atom</bdi></a> said in <a href="/post/55191">how-to-change-date-format-from-from-mm-dd-YYYY -to-dd-mm-YYYY</a>:</p>
<blockquote>
<p dir="auto">Morning there… i am Too much newie about notepad ++ i have tons of data to convert and this is a big trouble for me…<br />
my files are a unique file every line starting with something like<br />
5/17/2022 4:59:59 PM —<br />
8/19/2022 6:59:59 PM —<br />
11/19/2022 3:59:59 AM<br />
2/15/2023 5:59.59 PM —<br />
5/17/2023 10:59:59 PM<br />
8/20/2023 12:59:59 AM<br />
11/19/2023 9:59:59 AM<br />
2/15/2024 11:59:59 PM<br />
9/17/2024 4:59:59 AM 5<br />
8/19/2024 6:59:59 AM —<br />
11/18/2024 2:59:59 PM<br />
2/15/2025 5:59:59 AM 3<br />
5/17/2018 5:59.59 PM 5<br />
8/19/2018 7:59.59 PM 1<br />
11/19/2018 3:59.59 AM<br />
2/15/2019 6:59:59 PM —<br />
5/17/2019 11:59:59 PM<br />
8/20/2019 1:59:59 AM —<br />
so is the date is MONTH/DAY/YEAR and is not back to the 19xx will be only in the future… i need two options with notepad++:<br />
1- is possible to use notepad++ to SORT all dates MANTAINING the actual for… but put in order… so<br />
with this format it will sort BY DATE then look for month and year  OR<br />
2- is possible to Switch the actual format into  DD/MONTH/YEAR mantaining the proper number (so remains 20/8/2019 and not 20/08/19)<br />
According with the post:<br />
<a href="https://community.notepad-plus-plus.org/topic/12834/how-to-change-date-format-from-from-mm-dd-yy-to-dd-mm-yyyy/3">solution about 2 digit year</a><br />
I saw is possible … but i have the end of the year in 4 digit instead 2 so the solution given by<br />
<a href="https://community.notepad-plus-plus.org/user/guy038">guy038</a> is not suitable for my needs…</p>
<p dir="auto">I REALLY NEED please … or First solution or Second solution… i need to SORT this huge file with notepad ++<br />
and i have no clue… Thanks in advance</p>
</blockquote>
<p dir="auto">I forgot to mention that i found ANOTHER problem… the digit… cause the MONTH are not in xx format but in x format…    i have no clue in this … almost disperate ((</p>
]]></description><link>https://community.notepad-plus-plus.org/post/55193</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/55193</guid><dc:creator><![CDATA[Lorenzo Atom]]></dc:creator><pubDate>Sat, 20 Jun 2020 13:37:10 GMT</pubDate></item></channel></rss>