Tagged Questions
0
votes
4answers
80 views
How to know whether a given string is a valid UTC DateTime format?
I'd need to allow accepting UTC datetimes: http://www.w3.org/TR/NOTE-datetime
Such as:
- Year:
YYYY (eg 1997) Year and month:
YYYY-MM (eg 1997-07) Complete date:
...
1
vote
1answer
81 views
time.Parse behaviour
In Go, while trying to convert string to time.Time, using time package's Parse method doesn't return expected result. It seems problem is with the timezone. I want to change to ISO 8601 combined with ...
4
votes
2answers
82 views
Parsing date and time with FParsec
Within a simple query language I'd like to recognize date and time literals, preferably without using delimiters. For example,
CreationDate = 2013-05-13 5:30 PM
I could use a combinator to detect ...
1
vote
2answers
85 views
How to Parse Datetime sec.ms
i have a string
1368352924.281610000
presenting the DateTime.
How can i parse this?
Is tried:
string rststr = Convert.ToString(result);
string[] rststrarr = ...
5
votes
5answers
115 views
How to correctly parse a DateTime in this format: “2013-04-29T00:00:00” [duplicate]
I consume a web service which returns me some dates as string, and I use DateTime.Parse to get the correspondente DateTime objects. It is working, but I'm afraid my usage of DateTime.Parse may be ...
-1
votes
1answer
20 views
ruby parsing datetime %Y%m%d%H%M%S
I have a string like this: "20130429130501" (It is date and time with chomped UTC zone info (.0Z); it can be represented like %Y%m%d%H%M%S). I was trying DateTime.parse and DateTime.strptime without ...
0
votes
2answers
76 views
how to display tweets of particular time period using twitter api
my requirement is to display tweets of particular time period using twitter api. I am using getsearch method of api to get all tweets i have tried the following code to display tweets of particular ...
2
votes
2answers
106 views
Java SimpleDateFormat parse returning the wrong day
I'm trying to parse a string in the format of "Monday, May 15 at 1:00 PM" into a datetime so that i can enter it into a database. However the parse isnt returning the right day when i'm testing this ...
4
votes
1answer
111 views
Parsing strings in custom formats using TypeConverter.ConvertFromString()
Using TypeConverter.ConvertFromString(), I need to supply a custom format when parsing data from a string (for example, with DateTime: "ddMMyyyy" or "MMMM dd, yyyy").
...
0
votes
2answers
66 views
Parsing of string into DateTime always gets 00:00 for time part that is formatted like HH\mm
I'm parsing dates and times from an XML using this function:
DateTime.ParseExact(timeEndString, "yyyyMMddHHmm", CultureInfo.InvariantCulture);
Everything is working fine unless the time is 00:00. ...
1
vote
5answers
58 views
Why does c# DateTime.Parse seem to interpret string incorrectly?
Can someone please explain why the following code outputs "4/14/2013 8:00:00 PM"?
var dt = "2013-04-15+00:00";
var result = DateTime.Parse(dt);
2
votes
1answer
90 views
Parse String into a DateTime Object in C#
I am trying to Parse a String date and time into a single .NET DateTime object. I have the following code:
string dtObjFormat = "dd MMM YYYY HH:mm";
string mydatetimemash = e.Date + " " + e.Time; // ...
0
votes
1answer
26 views
Parsing String into a C# DateTime Object
In an XML that I am parsing, I have the following:
<event>
<book>Felicity Fly</book>
<author>Christina Gabbitas</author>
...
3
votes
1answer
44 views
C# DateTime.Parse(someString)
I am working on a project and I get the following string representation of time and date, i.e. "00:02:52 APRIL 11, 2013 GMT". When I use the DateTime.Parse() method:
DateTime dt= ...
1
vote
2answers
36 views
Parse various formatted string to time
I want to parse string to time, the string can be "hh:mm tt", or "hh:mmtt"
"11:00am", "11:00 am", "13:00" "5:00AM" "6:00PM" , "6:00 pm", "6:00:01 pm" etc.
I wonder how to parse it correctly. My ...
2
votes
3answers
77 views
Data parsing error
I have a string Value = "12/11/2013" and try to parse this using
DateTime.ParseExact(Value, "dd/MM/yyyy", null);
But have an exception FormatException and cannot undestand why.
-2
votes
1answer
47 views
Datetime Parse Exact
I'm trying to change the dateformat from "4/01/2013 0:00:00" to "01/4/2013 00:00:00".
DateTime.ParseExact(fromDate.ToString(), "m/dd/yy HH:mm:ss", CultureInfo.InvariantCulture).ToString("dd/mm/yy ...
3
votes
2answers
87 views
Faster alternative to DateTime.ParseExact
I parse a string into a DateTime millions of times:
public static CultureInfo ci = CultureInfo.InvariantCulture;
while (!reader.EndOfStream)
{
line = reader.ReadLine();
string[] ...
-2
votes
2answers
62 views
How to parse String “06\24\1989” into Date 06/24/1989 format using SimpleDateFormat [closed]
How to parse String "06\24\1989" (if user entered like this) in to Date format (MM/DD/YYYY) using SimpleDateFormat.
2
votes
7answers
135 views
How can I setup DateTime hour,minute and second?
private void StartAuction()
{
DateTime closeDate;
closeDate = DateTime.Parse(Console.ReadLine());
}
I am able to set the date,month and year but I want the hours,minutes and seconds to setup ...
-1
votes
1answer
67 views
ParseExact DateTime exception [closed]
I'm trying to parse this date string but it's giving a format exception which is driving me crazy. Can anyone help?
string date = "05032013123020";
string format = "ddMMyyyyHHmmss";
DateTime result ...
-1
votes
1answer
43 views
What do I need to parse the date correctly
I'm receiving a bad parsing from the content in a database.
This is what I'm receiving and the date string.
FORMAT EXCEPTION: The string was not recognized as a valid DateTime.
There is an ...
1
vote
0answers
38 views
R: read.csv parse dates [duplicate]
The function read.csv in R allows you to pass in colClasses in order to speed up the parsing process. One of the classes that you are allowed to pass in is Date. My data file has a date column in the ...
1
vote
1answer
51 views
Parsing DateTime HHmmss
Well recently i was trying to parse this time 24:14:38 which MUST BE 12:14:38AM
so far this is my function
private static DateTime ParseDate(string time)
{
DateTime result;
if ...
3
votes
8answers
111 views
How to combine two strings (date and time) to a single DateTime
I have two strings:
string one = "13/02/09";
string two = "2:35:10 PM";
I want to combine these two together and convert to a DateTime.
I tried the following but it doesn't work:
DateTime dt = ...
2
votes
4answers
85 views
Unparseable time in Java with SimpleDateFormat
SimpleDateFormat formatter = new SimpleDateFormat("h:mm a");
edto.setDate(formatter.parse(startHrs.getText() + ":" + startMin.getText());
Hello, I'm trying to format my time into something like ...
-6
votes
2answers
88 views
Why is this datetime parse failing for “02/13/2013”? [closed]
I am trying to parse the string "02/13/2013" into a datetime and it doesn't work. (it doesn't set dt to the value of dtResult because the tryprase didn't pass.
Here is what I am doing:
DateTime ...
0
votes
2answers
82 views
How to ignore text in MySQL STR_TO_DATE format string?
I'm trying to parse some dates in a MySQL table and I cannot get STR_TO_DATE to play nicely:
SELECT STR_TO_DATE('Tue Feb 12 17:59:59 EET 2013', '%a %b %e %T EET %Y')
will return null.
How can I ...
0
votes
1answer
21 views
Date conversion on Live Server issue
I have a web application that when working in development is fine, but going to Live it does not work.
What the situation is to do with dates. A user enters in a date in the UK format through a text, ...
1
vote
2answers
217 views
c# parse string (without timezone) to DateTime, taking DST into account
I've read many SO articles, but I don't seem to be able to find a good answer to the problem. Posted suggestions include functions that convert dates to and from strings more then once, concatenating ...
0
votes
1answer
186 views
DateTime.ParseExact with string in format 2012-08-17T04:39:51.215Z
I'm working on my first full C# project. I'm writing a portable class library for a Windows Store App / Windows Phone app and I'm actually having trouble with just DateTime.ParseExact and ...
-1
votes
1answer
113 views
Error : String was not recognized as a valid DateTime
String was not recognized as a valid DateTime.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information ...
3
votes
1answer
141 views
Parsing “DateTime.Now”?
I need to translate strings like this:
"DateTime.Now.AddDays(-7)"
into their equivalent expressions.
I'm only interested in the DateTime class. Is there anything built into .Net that'll help me ...
1
vote
2answers
174 views
Correct way to post dates to Web API?
I am reading data from Web API and populate a form. When I submit it back to Web API, I get this error:
{"Message":"An error has occurred.","ExceptionMessage":"Property
'StartDate' on type ...
3
votes
2answers
109 views
Parse string to date with “PST” format
In our application server is giving date time string in format like this
"2013-01-14 T 06:33 PST" and "2013-01-14 T 06:33 PDT" or "2013-01-14 T 06:33 PLT"
How could I parse those strings and get ...
4
votes
3answers
277 views
DateTime.Parse different on XP vs Windows 7 / 8
Doing the following on XP and Windows 7 yields different results in a .NET4 vs. a .NET2 console application:
Console.WriteLine(String.Format("DateTime.Parse on Client: {0}",
...
4
votes
3answers
85 views
Parsing a date that can be in several formats in python
I would like to parse a date that can come in several formats, that I know beforehand. If I could not parse, I return nil. In ruby, I do like this:
DATE_FORMATS = ['%m/%d/%Y %I:%M:%S %p', '%Y/%m/%d ...
-2
votes
1answer
458 views
Convert.ToDateTime “string was not recognized as a valid datetime” error
I am trying to get just the date portion from a datetime variable.
Reading the documentation for currentculture, I tried with:
currentThread.CurrentCulture = new ...
-4
votes
4answers
180 views
How can i parse time difference as string like this [closed]
I want to parse 2 DateTime difference like below:
312 Days 21 Hours 16 Minutes 5 Seconds // there is difference > days
21 Hours 16 Minutes 5 Seconds // there is difference > hours
16 Minutes 5 ...
0
votes
4answers
97 views
Using DateTime.ParseExact is throwing FormatExceiption
I'm trying to use DateTime.ParseExact, but I keep getting an error thrown back
String was not recognized as a valid DateTime.
Looking at the screenshot below, I've stored my item in the ...
-1
votes
3answers
56 views
I need a very flexible time regex [closed]
I’m looking to create a regex for these patterns:
[num] [am]
[num] [pm]
[num] [-] [num]
[num] [:] [num]
with or w/o spaces
It’s to determine if there is a time in a sentence. Ideally, it would ...
2
votes
1answer
76 views
DateTime.ParseExact for : Fri Dec 7 16:36:21 2012
I have the following string which I want to bind to DateTime object for further processing:
Fri Dec 7 16:36:21 2012
I tried this:
string format = "ddd MMM dd hh:mm:ss yyyy";
...
3
votes
3answers
493 views
How to manage parsing an null object for DateTime to be used with ADO.NET as DBNULL
I have two DateTime objects, BirthDate and HireDate. They are correctly formatted as a string and when I pass them through to my data access layer, they need to be parsed into a DateTime object.
...
4
votes
1answer
47 views
Odd results with parsing a Datetime c#
I have the following code:
IFormatProvider culture = new System.Globalization.CultureInfo("es-ES", true);
date = DateTime.ParseExact(_date, "yyyy-MM-dd hh:mm", culture);
for _date = "2012-11-17 ...
0
votes
1answer
113 views
Parsing timestamp Soap fied to Java Date
I received from a SOAP message the follow date:
2012-11-16T02:02:05Z
How to parse to Date? What means this T and the Z in the date according with the SOAP specification?
-3
votes
2answers
328 views
Storing the current date time as a string variable
I'm trying to store the current time into a string variable upon the click of a finalisation button, that I can then pass through a method giving it an end date.
I thought it could work using this ...
1
vote
4answers
191 views
Parsing and validating numeric and DateTime input
So I am making a windows form with a separate class for student details and international student. I need to validate that my Year mark for the student/international student is More than 0 and less ...
0
votes
2answers
4k views
JavaScript datetime parsing [duplicate]
Possible Duplicate:
How can I convert string to datetime with format specification in JavaScript?
I have a json response which contains a hashmap like;
{"map":{"2012-10-10 ...
3
votes
6answers
120 views
How to parse times in Java? [closed]
I was wondering if java comes with a built in way to parse times/dates like this one:
5m1w5d3h10m15s
It's 5 months, 1 week, 5 days, 3 hours, 10 minutes, 15 seconds.
1
vote
2answers
62 views
Exception thrown when parsing seemingly correct date time
I am using the DateTime.ParseExact method to parse a date-time. However, why does the following fail and throw an exception?
string input = "100206 2330";
string format = "ddMMyy hhmm";
DateTime ...

