<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf in Advanced Programming</title>
    <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973343#M365</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13770"&gt;@Kathryn_SAS&lt;/a&gt;&amp;nbsp;, sorry I forgot to tell that the code was from PG3 lesson 5's demo, p305d01, and it uses dataset pg3.storm_detail, according to the instruction, the complete code for this is as follows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%3B%Y:%HH'
            (datatype=datetime);
run;

title 'Storms with Category 5 Winds';
proc print data=pg3.storm_detail noobs;
    var Name ISO_time Wind Pressure Region;
    where Wind&amp;gt;155; 
    format ISO_time dateh.;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and I got this output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_0-1756236103411.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109292i5AED8F1A50F1B504/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_0-1756236103411.png" alt="dxiao2017_0-1756236103411.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;however, the correct output in the materials is like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_1-1756236200299.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109293iD6BC0D4825182F3A/image-size/large?v=v2&amp;amp;px=999" role="button" title="dxiao2017_1-1756236200299.png" alt="dxiao2017_1-1756236200299.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and I can only get this output (above) after I change the format as %d%3b%Y, the code and output is as follows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%3b%Y:%HH'
            (datatype=datetime);
run;

title 'Storms with Category 5 Winds';
proc print data=pg3.storm_detail noobs;
    var Name ISO_time Wind Pressure Region;
    where Wind&amp;gt;155; 
    format ISO_time dateh.;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_2-1756236521369.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109294iFA203E9D446B371B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_2-1756236521369.png" alt="dxiao2017_2-1756236521369.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Aug 2025 19:29:41 GMT</pubDate>
    <dc:creator>dxiao2017</dc:creator>
    <dc:date>2025-08-26T19:29:41Z</dc:date>
    <item>
      <title>suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973316#M361</link>
      <description>&lt;P&gt;The picture format of the date/time should be %d%3b%Y:%HH (not %d%3B%Y:%HH), see the screen capture(p208,PG3 pdf):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled1.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109282i3436ADD76D04FC26/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled1.png" alt="Untitled1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code and results are as follows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;date/time format is &lt;STRONG&gt;not&lt;/STRONG&gt; correct:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%3B%Y:%HH'
            (datatype=datetime);
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled2.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109284i17462132E6263872/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Untitled2.png" alt="Untitled2.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;date/time format is &lt;STRONG&gt;correct&lt;/STRONG&gt;:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%3b%Y:%HH'
            (datatype=datetime);
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled3.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109285i442C845DC80C25A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Untitled3.png" alt="Untitled3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 16:09:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973316#M361</guid>
      <dc:creator>dxiao2017</dc:creator>
      <dc:date>2025-08-26T16:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973323#M362</link>
      <description>&lt;P&gt;Can you clarify what documentation you are referencing?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 17:12:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973323#M362</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2025-08-26T17:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973328#M363</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13770"&gt;@Kathryn_SAS&lt;/a&gt;&amp;nbsp;, the material is SAS Programming 3: Advanced Techniques Course Notes (PDF document), which I downloaded from the 7-days free trial, the version is 15May2019, LWPG3M6_001. Perhaps this mistake is only in the course note PDF and it is not in the online materials. The screen capture of the PDF page is as follows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_0-1756229500441.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109288i1EAEDE9243AA2B6E/image-size/large?v=v2&amp;amp;px=999" role="button" title="dxiao2017_0-1756229500441.png" alt="dxiao2017_0-1756229500441.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 17:40:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973328#M363</guid>
      <dc:creator>dxiao2017</dc:creator>
      <dc:date>2025-08-26T17:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973339#M364</link>
      <description>&lt;P&gt;What is your session ENCODING setting?&amp;nbsp; The %3B will not work with Unicode session.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/proc/1.0/p0n990vq8gxca6n1vnsracr6jp2c.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/proc/1.0/p0n990vq8gxca6n1vnsracr6jp2c.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="p18fj198t255aen1xh29z1tkb5cj" class="xis-argDescriptionPair"&gt;
&lt;H4 class="xis-argument"&gt;%b&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;abbreviated month name (for example, JAN or Jan). The character casing is determined by the SAS session locale.&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryTip"&gt;Tip&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;For the English language, to always create an abbreviated month with only an uppercase initial letter (for example, Jan), use the directive %3B.&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="p0p7scluqlh8bzn1qx4y67sr55hx" class="xis-argDescriptionPair"&gt;
&lt;H4 class="xis-argument"&gt;%&amp;lt;&lt;SPAN class="xis-userSuppliedValue"&gt;n&lt;/SPAN&gt;&amp;gt;B&lt;/H4&gt;
&lt;DIV class="xis-argumentDescription"&gt;
&lt;P class="xis-paraSimpleFirst"&gt;the full month name (for example, January) if&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-userSuppliedValue"&gt;n&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is not included in the directive.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-userSuppliedValue"&gt;n&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;specifies the number of characters that appear for the month name. In comparison, the %b directive writes a three-character month abbreviation in uppercase letters for some locales.&lt;/P&gt;
&lt;TABLE class="xis-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD rowspan="2" class="xis-restriction"&gt;Restrictions&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-userSuppliedValue"&gt;directives&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;argument is not supported if CASFMTLIB is specified.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryText"&gt;&lt;SPAN class="xis-userSuppliedValue"&gt;n&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is not supported in DBCS and Unicode SAS sessions.&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="xis-summaryExample"&gt;Example&lt;/TD&gt;
&lt;TD class="xis-summaryText"&gt;%3B would write Oct for the month of October&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 26 Aug 2025 18:57:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973339#M364</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-08-26T18:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973343#M365</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13770"&gt;@Kathryn_SAS&lt;/a&gt;&amp;nbsp;, sorry I forgot to tell that the code was from PG3 lesson 5's demo, p305d01, and it uses dataset pg3.storm_detail, according to the instruction, the complete code for this is as follows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%3B%Y:%HH'
            (datatype=datetime);
run;

title 'Storms with Category 5 Winds';
proc print data=pg3.storm_detail noobs;
    var Name ISO_time Wind Pressure Region;
    where Wind&amp;gt;155; 
    format ISO_time dateh.;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and I got this output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_0-1756236103411.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109292i5AED8F1A50F1B504/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_0-1756236103411.png" alt="dxiao2017_0-1756236103411.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;however, the correct output in the materials is like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_1-1756236200299.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109293iD6BC0D4825182F3A/image-size/large?v=v2&amp;amp;px=999" role="button" title="dxiao2017_1-1756236200299.png" alt="dxiao2017_1-1756236200299.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and I can only get this output (above) after I change the format as %d%3b%Y, the code and output is as follows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%3b%Y:%HH'
            (datatype=datetime);
run;

title 'Storms with Category 5 Winds';
proc print data=pg3.storm_detail noobs;
    var Name ISO_time Wind Pressure Region;
    where Wind&amp;gt;155; 
    format ISO_time dateh.;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_2-1756236521369.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109294iFA203E9D446B371B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_2-1756236521369.png" alt="dxiao2017_2-1756236521369.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 19:29:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973343#M365</guid>
      <dc:creator>dxiao2017</dc:creator>
      <dc:date>2025-08-26T19:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973349#M366</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;, thanks a lot for your information! I got this encoding information through the proc content output, and it is unicode:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_0-1756237415006.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109295i52114DA41309F506/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_0-1756237415006.png" alt="dxiao2017_0-1756237415006.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;it looks like both %3b and %3B works, which display 3 character month name and full month name respectively, and perhaps what does not work is the number, 3, or I would like to say that if one only wants to display a 3 character month name or a full month name, the number, 3, is not needed. I tried the example again:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%b%Y:%HH'
            (datatype=datetime);
run;

title 'Storms with Category 5 Winds';
proc print data=pg3.storm_detail noobs;
    var Name ISO_time Wind Pressure Region;
    where Wind&amp;gt;155; 
    format ISO_time dateh.;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_1-1756238086174.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109296i6F90F98C50E14485/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_1-1756238086174.png" alt="dxiao2017_1-1756238086174.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
    picture dateh (default=13)
            low-high='%d%B%Y:%HH'
            (datatype=datetime);
run;

title 'Storms with Category 5 Winds';
proc print data=pg3.storm_detail noobs;
    var Name ISO_time Wind Pressure Region;
    where Wind&amp;gt;155; 
    format ISO_time dateh.;
run;
title;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dxiao2017_2-1756238474883.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/109297iD3F31C0A2570A853/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dxiao2017_2-1756238474883.png" alt="dxiao2017_2-1756238474883.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 20:02:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973349#M366</guid>
      <dc:creator>dxiao2017</dc:creator>
      <dc:date>2025-08-26T20:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973351#M367</link>
      <description>&lt;P&gt;What PROC CONTENTS presents is the encoding setting for the dataset, not the encoding setting for the current SAS session.&amp;nbsp; &amp;nbsp;To see the session encoding setting get the system option ENCODING.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put ENCODING=%SYSFUNC(GETOPTION(ENCODING));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But if you made that dataset using the same type of SAS session you are currently running then most likely your SAS session is also using UTF-8 as the encoding.&amp;nbsp; In which case the the %3B directive cannot be used, per the documentation I posted before.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 20:07:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973351#M367</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-08-26T20:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: suggest a minor correction for the picture format of date/time,p208,PG3 pdf</title>
      <link>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973354#M368</link>
      <description>&lt;P&gt;exactly&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;, it is UTF-8, I think you are right about the number, n, before the month's format does not work&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put encoding=%sysfunc(getoption(encoding));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt; 69         %put encoding=%sysfunc(getoption(encoding));
 encoding=UTF-8
 70         &lt;/PRE&gt;</description>
      <pubDate>Tue, 26 Aug 2025 20:19:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Advanced-Programming/suggest-a-minor-correction-for-the-picture-format-of-date-time/m-p/973354#M368</guid>
      <dc:creator>dxiao2017</dc:creator>
      <dc:date>2025-08-26T20:19:38Z</dc:date>
    </item>
  </channel>
</rss>

