Top "Date-parsing" questions

Date-parsing refers to programming logic which reads one or more parameters, attempts to match it to a supported or specified date format, then returns the resulting Date if successful.

Read csv with dd.mm.yyyy in Python and Pandas

I am reading a csv file with German date format. Seems like it worked ok in this post: Picking dates …

python csv pandas date-parsing
Convert timestamp string with epochal time and timezone into NSDate

I have a String in following format "/Date(573465600000-0800)/" How do I convert this to regular NSDate object?

swift timestamp date-parsing
ParseExact - String was not recognized as a valid DateTime

I'm trying to convert string variable to datetime format: [DateTime]::ParseExact($tempdate, 'dd.MM.yyyy', [CultureInfo]::InvariantCulture).ToString('yyMMdd') $tempdate …

powershell datetime date-parsing
Parsing a date using DateTimeFormatter ofPattern

I'm trying to parse a string containing a date and time using the java.time.format.DateTimeFormatter (my ultimate goal …

java parsing datetime-format date-parsing datetimeformatter
How to use JSON.parse reviver parameter to parse date string

My JSON string contains a date field that returns such a value: "2009-04-04T22:55:16.0000000-04:00" I am particularly interested …

javascript json debugging date-parsing reviver-function
Parsing a date’s ordinal indicator ( st, nd, rd, th ) in a date-time string

I checked the SimpleDateFormat javadoc, but I am not able to find a way to parse the ordinal indicator in …

java simpledateformat date-parsing
JQuery UI Datepicker parseDate 'Missing number at position 6'

I need to parse dates like '070126' to '26 Jan 2007'. I thought I could use the datepicker, but …

jquery datepicker date-parsing
Append time to JQuery datepicker?

I'm trying to follow this example in order to append the current time to my input when a date is …

jquery time datepicker date-parsing
Joda time - Parsing string throws java.lang.IllegalArgumentException

Shouldn't a String formatted with a specific DateTimeFormatter be able to be parsed using LocalDateTime.parse()? Test DateTimeFormatter formatter = ISODateTimeFormat.…

java jodatime date-formatting date-parsing
Automatic Date/Time parser without specifying format

I am searching for a java library that can parse a string into a POJO without specifying the format. I …

java datetime date-parsing