var formatter

ateFormatter = new DateFormatter();
formatter.formatString = "MM/DD/YYYY";
dateinString = formatter.format("2008-7-10");
This seem to work great.
But what happens with locale settings where it's DD-MM-YYYY
will it recognize if it is 10-12-2008 (will it know it's 10 for day and 12 for
month?)
just curious