The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
61 views

Date time parse in java

I have a trouble with parsing date time in java, I have a strange date time format. How can I parse 2013-04-03T17:04:39.9430000+03:00 date time in java to format dd.MM.yyyy HH:mm in java?
0
votes
2answers
62 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. ...
4
votes
2answers
146 views

Parsing this kind of string into DateTime - “Friday 22nd March 2013” (C#)

I've got a large chunk of text like this: ....advises that Friday 22nd March 2013 has the potential to be declared a day..... I have to locate and then parse DateTime in it (Friday 22nd March ...
0
votes
2answers
69 views

always getting string was not recognized as valid datetime. how to convert for current format

I want to accept date in dd-MM-yyyy format using textbox I have used ajax calendar also. DateTime.ParseExact(txtDate.Text,"dd-MM-yyyy",null) and Convert.ToDateTime(txtDate.Text) are both ...
0
votes
6answers
99 views

Combine Date and Time

I need to combine date and time and insert into one datetime row. Here is my code: DateTime Headlinedate; try { DateTime date = Convert.ToDateTime(txtHeadlinedate.Text.Trim(), Ci); ...
1
vote
3answers
81 views

Time doesn't get trimmed in DateTime.ParseExact

I have a textbox control as <asp:TextBox ID="TxtStartDate" runat="server" CssClass="Text1"></asp:TextBox> which takes a date and time but I want to send only a date to the database. ...
0
votes
1answer
92 views

DateTime format - what am I doing wrong?

I have this string: "14. januar 2013 9:15:00 EST". From what I understand the format is the following: d. MMMM yyyy H:mm:ss EST, but I've tried the following code, and nothing works. What am I doing ...
2
votes
1answer
205 views

Parse TextBox to SqlDbType.Date as “dd.MM.yyyy”

I want dates to look on page like dd.MM.yyyy. Me like this way, which is culture-independent. I don't know how make it right. cmd.Parameters.Add("@eventdate", SqlDbType.Date).Value = ...
1
vote
4answers
180 views

Parsing datetime of the format “2013-Jan-31” throws error

I have a datetime column in database. DateTime end_date = DateTime.ParseExact("2013-Jan-31", "yyyy-MM-dd", CultureInfo.InvariantCulture); Why isn't this working?
1
vote
4answers
77 views

Strict or similar option for DateTime Parsing

I have a code that looks like code below in a PC which runs fine: DateTime.Parse("10/10/2012"); I copied it over to other machine and it says something blaming the date conversion is wrong. What I ...
1
vote
2answers
737 views

How to convert a Datetime String into a Datetime object

string DateCreated = "2012-05-24 12:34:40.060"; USA culture How do I create the string into a Date time object with a format that include the month, day, year, hour, minutes, seconds, milliseconds. I ...
0
votes
7answers
871 views

Regular Expression: match hh:mm, hh.mm or h

I'm looking for a regular expression to match different time formats (for a time tracking web-app) in javascript. The user can insert times with one of the following formats: h hh:mm hh.mm I can ...
5
votes
1answer
282 views

Convert general SQL time format in c# ( all variations )?

If I have theses general sql valid dates in c# strings : (each date can be in different order inside ) e.g. : 01 feb 2010 feb 01 2010 2010 01 feb ... ... I want to convert a string date to ...
3
votes
3answers
307 views

Populating DateTime object with this string 03-06-2012 08:00 am

How to populate C# DateTime object from this "03-06-2012 08:00 am" string. I'm trying some code of follwoing type: DateTime lectureTime = DateTime.Parse("03-06-2012 08:00 am"); I am using jQuery ...
-2
votes
2answers
248 views

How do I convert DateTime to another format?

From a weather feed I'm getting the data for dates in the form of 2012-05-17. How do I convert that to Thursday May 17th form?
0
votes
1answer
598 views

String not recognized as valid datetime

My code gives the above error. I have tried to change it based on the link below: String was not recognized as a valid DateTime “ format dd/MM/yyyy” but it still does not work. Would be grateful ...
2
votes
2answers
599 views

parsed date format hard to convert

I parse a date that is in string format and would like to convert it to a datetime format but cannot figure out how to do this. The date appears as such; Wed April 18 08:00:04 +08:00 2012 and would ...
1
vote
0answers
66 views

datetime being saved is one second off in Rails app

I'm updating some datetime fields on one of my models. I parse a whole-minute time (like 12:30) using DateTime.civil, then assign it to the attribute. When I save and pull the data back out of the ...
-4
votes
4answers
817 views

Convert Date Value to Specific Format in C#

How to convert any date format to a specified format in C#. For example: If Date Format is 14.11.2011 or 14/11/2011 Looking for a conversion function which converts into yyyy-MM-dd format like ...
3
votes
2answers
900 views

DateTime.TryParseExact() fails because of thread's culture info

I have the following line of code in existing implementation DateTime.TryParseExact( "15/11/2021 00:00:00", "dd/MM/yyyy HH:mm:ss", null, DateTimeStyles.None, out maturityDate); ...
2
votes
4answers
151 views

Date format for conversion in c# [closed]

is there anyone there who can tell me what type of a date format is this '1110620'? And how can I convert this to a 'yyyy-MM-dd' format. Any help is highly appreciated. Thanks!
0
votes
1answer
549 views

Parsing time in Ruby 1.9.2 is not same as Ruby 1.8.7?

Parsing this in ruby 1.8.7 time_str = "Sun Feb 01 0111 00:00:00 GMT+0530 (IST)"<br /> Time.parse(time_str)<br /> output Tue Feb 01 00:00:00 +0530 2011 ruby 1.9.2 time_str = "Sun Feb ...
0
votes
3answers
350 views

Conversion of a Varchar Datatype to a datetime resultant in an out of range

I have problem. I can' identify my mistake... int dt = Convert.ToInt32(Items.Rows[T1]["F14"].ToString().Trim()); int mn = Convert.ToInt32(Items.Rows[T1]["F15"].ToString().Trim()); int yr = ...
1
vote
3answers
47 views

Is it possible to parse DateTime from “-3:00:00” string?

I have a string representing time offset. Can I build a DateTime object from that? I mean if the the negative value is OK?
3
votes
4answers
3k views

Create DateTime from string without applying timezone or daylight savings

How do I create a DateTime var from a string which is already adjusted for UTC? I am running this on a machine set to BST (GMT+1). If I run the following line of code: DateTime ...
2
votes
3answers
3k views

What system default date format to use?

I'm setting the standards for our application. I've been wondering, what default date format should I choose to use ? It should be: Internationalization & timezone aware, the format should be ...
1
vote
4answers
968 views

How to do Convert.ToDateTime or parse date in C# but only get dd/mm/yyyy in C# 2.0?

As topic says, I have a string like string CreatedDate = "12/09/2010" and I want to pass it to a web method that only accepts it as DateTime customer.dateCreated = Convert.ToDateTime(CreatedDate); ...
5
votes
2answers
5k views

DateTime.ParseExact not working at all, why?

I am attempting to parse the following String into a DateTime object in c#: DateTime.ParseExact("20101108 230125", "yyyyMMdd hhmmss", null) although the value looks correct the ParseExact method ...
0
votes
3answers
2k views

How can i convert the string value to date time value and assign it to DateTimePicker

I stored a date value and retrieve it and the format of the date in the string is yyMMdd. Now when the user loads that from the string i would like to select the DateTimePicker as the user loaded ...
12
votes
6answers
9k views

How to create a .Net DateTime from ISO 8601 format

I've found how to turn a DateTime into an ISO 8601 format, but nothing on how to do the reverse in C#. I have '2010-08-20T15:00:00Z' and I want to turn it into a DateTime object. I could separate ...
38
votes
5answers
74k views

Parse DateTime string in JavaScript

Does anyone know how to parse date string in required format dd.mm.yyyy?
19
votes
4answers
5k views

Natural/Relative days in Python

I'd like a way to show natural times for dated items in Python. Similar to how Twitter will show a message from "a moment ago", "a few minutes ago", "two hours ago", "three days ago", etc. Django 1.0 ...
1
vote
5answers
1k views

A respectable PHP Datetime parser

echo date('r',strtotime("16 Dec, 2010")); //Tue, 16 Dec 2008 20:10:00 +0530 echo date('r',strtotime("16 Dec 2010")); //Sat, 16 Jan 2010 00:00:00 +0530 That's just wrong... Either it should fail or ...