0
votes
2answers
272 views

C++ convert string date (1/4/2000) to int date (20000104)

I can write a function to parse the string date, but I feel like I am re-inventing the wheel here. Is there a faster, perhaps built in C++ way to get from a string date of this format: 1/4/2000 to a ...
1
vote
3answers
505 views

C++ convert date formats

I would like to convert an int date like: 20111201 to string: 01DEC2011 Is there a fast date format conversion built into C++ (or maybe a bash system command I can execute instead) to do ...
1
vote
1answer
384 views

SQL Select Query for Date Conversion

Have been researching all day and so far not found an acceptable answer and my experimenting with code has yielded nothing. I've got a database with a particular 2 columns "StartDate" and ...
-1
votes
2answers
149 views

convert unix time to w3 time in php [closed]

the database has fields stored in unix time, ie. 1328202426 and I have an api call of an open source standard that takes w3 time, ie. 2010-01-01T00:00:00Z a) convert w3 time, to the unix time b) ...
1
vote
1answer
515 views

Convert date string (EST) to Java Date (UTC)

I need some advice on this java method. The intent of this method is to take a string that represents a date - this string was created from a date in the EST time zone - and convert it to a java Date ...
2
votes
3answers
235 views

Optimize Perl script - runs too slow on 40GB+ files

I made the following Perl script to handle some file manipulation at work, but it's running far too slowly at the minute to be put in production. I don't know Perl very well (not one of my ...
-3
votes
5answers
3k views

how to convert long date value to mm/dd/yyyy format [duplicate]

Possible Duplicate: converting long string to date I need to convert long date value to mm/dd/yyyy format.my long value is strDate1="1346524199000" please help me
0
votes
4answers
2k views

Javascript Converting IETF Date to ISO8601 Format

I am using this awesome jQuery calendar plugin http://arshaw.com/fullcalendar/ One of the options for clicking on a date is a callback function to return the date that is clicked on. ...