<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>At the moment there's no way of reliably parsing years from human input using string-&gt;date in SRFI 19.&nbsp;The programmer can use one of two wild cards, ~Y or ~y, to parse 4- or 2-digit years respectively:</div><div><div><br></div><div><font class="Apple-style-span" face="Monaco" size="3"><span class="Apple-style-span" style="font-size: 12px;">&nbsp;&nbsp; &nbsp;(date-&gt;string (string-&gt;date "2010-03-02" "~Y-~m-~d") "~Y-~m-~d") ; ==&gt; "2010-03-02" - correct</span></font></div><div><div><font class="Apple-style-span" face="Monaco" size="3"><span class="Apple-style-span" style="font-size: 12px;">&nbsp;&nbsp; &nbsp;(date-&gt;string (string-&gt;date "10-03-02" "~y-~m-~d") "~Y-~m-~d") &nbsp; ; ==&gt; "2010-03-02" - correct</span></font></div><div><br></div><div>However, if the user mistakenly enters the date in the opposite format, we get badness:</div><div><br></div><div><div><div><font class="Apple-style-span" face="Monaco" size="3"><span class="Apple-style-span" style="font-size: 12px;">&nbsp;&nbsp; &nbsp;(date-&gt;string (string-&gt;date "2010-03-02" "~y-~m-~d") "~Y-~m-~d") ; ==&gt; error (bad format)</span></font></div><div><font class="Apple-style-span" face="Monaco" size="3"><span class="Apple-style-span" style="font-size: 12px;">&nbsp;&nbsp; &nbsp;(date-&gt;string (string-&gt;date "10-03-02" "~Y-~m-~d") "~Y-~m-~d") &nbsp; ; ==&gt; "0010-03-02" - "incorrect" century</span></font></div><div><br></div><div>This isn't really a bug in SRFI 19, but it is annoying in that it's impossible to read date information in either format in a single call to string-&gt;date.</div><div><br></div><div>I discussed this with Marco Maggi in his capacity as a SRFI 19 maintainer. His opinion was that, while any direct change to the SRFI should spawn another SRFI, SRFI 19 states that allows implementations to add their own wildcards to the standard set.</div><div><br></div><div>What are peoples' opinions on adding a PLT-specific wildcard to parse two or four digit years? I'm&nbsp;more than happy to do the leg work if people think it's a good idea. Otherwise I'll add something to Unlib to do the ~y case followed by the ~Y case.</div><div><br></div><div>Cheers,</div><div><br></div><div>-- Dave</div><div><br></div></div></div></div></div></body></html>