Date time parsing that accepts 05/05/1999 and 5/5/1999, etc... - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:18:18Zhttp://stackoverflow.com/feeds/question/227608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227608/date-time-parsing-that-accepts-05-05-1999-and-5-5-1999-etc1Date time parsing that accepts 05/05/1999 and 5/5/1999, etc...Ray Myers2008-10-22T21:26:10Z2008-10-23T02:48:46Z
<p>Is there a simple way to parse a date that may be in MM/DD/yyyy, or M/D/yyyy, or some combination? i.e. the zero is optional before a single digit day or month.</p>
<p>To do it manually, one could use:</p>
<pre><code>String[] dateFields = dateString.split("/");
int month = Integer.parseInt(dateFields[0]);
int day = Integer.parseInt(dateFields[1]);
int year = Integer.parseInt(dateFields[2]);
</code></pre>
<p>And validate with:</p>
<pre><code>dateString.matches("\\d\\d?/\\d\\d?/\\d\\d\\d\\d")
</code></pre>
<p>Is there a call to SimpleDateFormat or JodaTime that would handle this?</p>
http://stackoverflow.com/questions/227608/date-time-parsing-that-accepts-05-05-1999-and-5-5-1999-etc/227625#2276257Answer by toolkit for Date time parsing that accepts 05/05/1999 and 5/5/1999, etc...toolkit2008-10-22T21:31:25Z2008-10-22T22:31:53Z<p>Yep, use setLenient:</p>
<pre><code>DateFormat df = new SimpleDateFormat("MM/dd/yyyy");
df.setLenient(true);
System.out.println(df.parse("05/05/1999"));
System.out.println(df.parse("5/5/1999"));
</code></pre>
http://stackoverflow.com/questions/227608/date-time-parsing-that-accepts-05-05-1999-and-5-5-1999-etc/228356#2283560Answer by Ray Myers for Date time parsing that accepts 05/05/1999 and 5/5/1999, etc...Ray Myers2008-10-23T02:35:25Z2008-10-23T02:48:46Z<p>Looks like my problem was using "MM/DD/yyyy" when I should have used "MM/dd/yyyy". Uppercase <strong>D</strong> is "Day in year", while lowercase <strong>d</strong> is "Day in month".</p>
<pre><code>new SimpleDateFormat("MM/dd/yyyy").parse(dateString);
</code></pre>
<p>Does the job. Also, "M/d/y" works interchangeably. A closer reading of the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/text/SimpleDateFormat.html" rel="nofollow">SimpleDateFormat API Docs</a> reveals the following:</p>
<p>"For parsing, the number of pattern letters is ignored unless it's needed to separate two adjacent fields."</p>