Hello,

I can parse "31 Jan 2009" by the code:

Qt Code:
  1. QString day=datelist[1]; //datelist contains 31 and Jan and 2009 here...
  2. QString month=datelist[2];
  3. QString year =datelist[3];
  4. QDate todate= QDate::fromString(day+"/"+month+"/"+year,"dd/MMM/yyyy");
To copy to clipboard, switch view to plain text mode 

But the same code cannot parse a date with february like "01 Feb 2009" . What is the problem with Feb?