How to parse xsd:dateTime format?
Values of type xsd:dateTime can have a variety of forms, as described in RELAX NG. How can I parse all the forms into either time or datetime objects? ...
Values of type xsd:dateTime can have a variety of forms, as described in RELAX NG. How can I parse all the forms into either time or datetime objects? ...
Hi, I need to convert dateTime field(xsd:datetime) which is extracted from rss/atom into QDateTime, but QDateTime does not have support for time zone, any idea on how can we achieve this? Ex: QString("Tue, 09 Feb 2010 00:01:00 GMT") ==> QDateTime() QString("1985-04-12T23:20:50.52Z") ==>QDateTime ? QString("1937-01-01T12:00:27.87+00:...