Tagged Questions
0
votes
2answers
41 views
MySQL: manipulate dates and strings in selection query
I have two columns in a MySQL table: EventStart and Distance. EventStart is a DateTime which represents when an event begins, but Distance is a string which combines the number of miles to the event ...
0
votes
2answers
32 views
MONGODB Difference between DateTime object and YYYY-MM-DD string
In MongoDB, I only need to make date range queries. But the data set is huge (9 M) and coverting a string to DateTime object (I use Perl script) and then inserting them into MongoDB is very time ...
-2
votes
3answers
47 views
String to DateTime Convertion of 2013-05-04 13:12:20.123Z [closed]
I need to output this string value (2013-05-04 13:12:20.123Z) to a valid Datetime on this format (dd/MM/yyyy HH:mm:ss).
I tried Convert.ToDateTime, DateTime.ParseExact, DateTime.Parse but its change ...
1
vote
4answers
75 views
How I can get the difference by time string and Datetime now?
i want to calculate a checktime to the time now and get the hours.
I have a string "time" for example...
Jun 06 2013 07:23:06
and with DateTime.Now I get the Time now. The Problem is now that i ...
0
votes
1answer
22 views
DateTimeFormat with Timezone and no colon
I am using Talend Open Studio to fetch info from a DB to an XML file and then using XSLT on that.
There is a date field that comes into the XML as: 2013-02-13T16:49:51.733+0230, when I supply a Date ...
0
votes
1answer
47 views
Trying to display date and number value
Trying to display this below to print out
[Date.UTC(09:54:36),15297]
so I can use the data in highcharts.
/* Retrieve and display the results of the query. */
$Hour = '';
$ActualLoadMW = '';
...
-1
votes
2answers
21 views
Turn datepicker valuestring to ToLongDateString
Just want to start of that this whole question starts with this article:
http://transoceanic.blogspot.se/2011/08/wp7-create-datepicker-control.html
So i have done as in the article and now want to ...
1
vote
1answer
89 views
how to convert DateTime to a specified Format in windows phone 8
I have this date format MM/dd/yyyy. The problem is, when i convert it displays
05-12-2013.I want to display formate like 05/12/2013.
How can i correctly format it to: 05/12/2013?
My c# code is
...
3
votes
2answers
90 views
DateTime.Parse throws exception “not support in System.Globalization.GregorianCalendar”
string formatString = "MMddyyyyHHmmss";
string sample = "20100611221912";
DateTime dt = DateTime.ParseExact(sample, formatString, System.Globalization.CultureInfo.InvariantCulture);
the specific ...
3
votes
3answers
112 views
Current date and time as string
I wrote a function to get a current date and time in format: DD-MM-YYYY HH:MM:SS. It works but let's say, its pretty ugly. How can I do exactly the same thing but simpler?
string ...
0
votes
2answers
48 views
Convert string with format 12 hour(04/29/2013 10:00:00 AM) to datetime in C#
I'm retrieving a string like this (04/29/2013 10:00:00 AM) from my config.xml.I want to convert this to DateTime format.How to do this?
I tried followings:
DateTime dtNextrunTimeforExcel = ...
0
votes
1answer
63 views
php convert string to SQL type DateTime
I want to be able to compare an input of $date, which is a string, with a value from the database with the type of "datetime". Here's my code below. It outputs as a string type instead of the desired ...
1
vote
4answers
188 views
Get Date from String
Lets say I have one of following strings:
"Hello, I'm a String... This is a Stackoverflowquestion!! Here is a Date: 16.03.2013, 02:35 and yeah, plain text blah blah..-."
"This the other string! :) ...
2
votes
1answer
96 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
31 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>
...
0
votes
3answers
149 views
Convert Date Format in JSON variable
I have a variable that contains JSON data with thousands of rows. Some of the variables are dates in the following format Fri Jun 27 2008 00:00:00 GMT-0700 (US Mountain Standard Time). I need to ...
2
votes
3answers
1k views
Converting dd/mm/yyyy formatted string to Datetime [duplicate]
I am new to DotNet and C#. I want to convert a string in mm/dd/yyyy format to DateTime object. I tried the parse function like below but it is throwing a runtime error.
DateTime ...
0
votes
1answer
112 views
Convert time to string [closed]
Guys i am stuck I am trying to convert a String to date time using my own Format:
<?php
require('qs_connection.php');
require('qs_functions.php');
$sDay = $_POST['sDay'];
$sMonth = ...
0
votes
3answers
293 views
convert string to date type python [duplicate]
How do I convert a string to a date object in python?
The string would be: "30-01-12" (corresponding to the format: "%d-%m-%y")
I don't want a datetime.datetime object, but rather a datetime.date
0
votes
1answer
33 views
Calculating days using string dates in Python
I have dates in the current string format: 'Tue Feb 19 00:09:28 +1100 2013'
I'm trying to figure out how many days have passed between the date in the string and the present date.
I've been able to ...
2
votes
7answers
153 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 ...
0
votes
3answers
76 views
Remove part of string from a variable value
In my database i have data with datetime type. I read this data from database and convert to string and stored in a string variable. I want to remove time part from the value. How i do this??
0
votes
2answers
38 views
how to switch strings from 14/Nov/2012 into 2012/11/14 without converting to datetime in Python?
Maybe an odd question, but here we go:
I have to parse several log files, which I'm reading in random order. In order to process them sorted I need to sort by the extracted the log-time.
A log entry ...
0
votes
1answer
556 views
How to convert into Timestamp format in Java?
I am getting the date time in "1/23/2013 6:57:17 AM" format and need to convert it into "2012-01-01T12:00:00" format. I could have solved the issue by using string functions and separating the date ...
-1
votes
1answer
45 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 ...
2
votes
3answers
91 views
String to datetime: not recognized as a valid DateTime
Ok so after some research I haven't found any way to solve my problem .
This is my String to Date conversion code:
DateTime startDate = new DateTime();
startDate = DateTime.ParseExact(this.items[5], ...
3
votes
8answers
124 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
1k views
String was not recognized as a valid DateTime when parse exact
I get the following exception when converting to DateTime:
String was not recognized as a valid DateTime.
lbl_RequestDate.Text = "13/2/2013";
CultureInfo provider = CultureInfo.CurrentCulture;
...
2
votes
2answers
202 views
Python Date/Time Formatting
I am working with an API that is returning a JSON string that contains the following date/time in it:
2013-03-14T14:15:23-07:00
I get the date and the time, down to the second. But the last 5 ...
3
votes
1answer
153 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
votes
2answers
589 views
DateTime.Today vs DateTime.Now [duplicate]
These give me different dates
DateTime.Now.ToUniversalTime().ToString(@"yyyy-MM-dd");
DateTime.Today.ToUniversalTime().ToString(@"yyyy-MM-dd");
Why? I'm assuming it has something to do with the ...
0
votes
2answers
69 views
Converting a String to a Date -> FormatException
Im desperately trying to convert the following String to a Date.
I did research on how to do this, but was not able to do it successfully.
So basically, I have two Datepicker-Controls on my form.
...
0
votes
2answers
331 views
Inserting datetime type char from form into database
I'm trying to insert a datetime value into my database table, but I'm ancountring a problem.
Each time I try to do this, this message pops up:
The conversion of a varchar data type to a datetime ...
-2
votes
1answer
428 views
how to convert facebook's string ISO-8601 datetime to DateTime? [closed]
how to convert facebook "update_time" string ISO-8601 datetime to DateTime
2013-01-15T11:53:45+0000
This does not work
How to create a .Net DateTime from ISO 8601 format
This also does not work
...
-2
votes
1answer
489 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 ...
0
votes
3answers
537 views
Javascript date format/parse toString() 'Dec 1, 2012'
I need a solution to convert, parse or format Date() toString like 'Dec 1, 2012'. I found this example to String: 'mmm d, yyyy', but it does not work.
-2
votes
5answers
201 views
How convert string to Datetime by a format? [duplicate]
Possible Duplicate:
Convert string to DateTime in c#
How can I convert string to DateTime by a format?
Convert.ToDateTime("12/11/17 2:52:35 PM")
Result is 12/11/2017 02:52:35 PM and this ...
3
votes
5answers
130 views
Which method is proposed for split date string?
I have a String instance as following format:
yyyyMMddHHmmss
and I want split any element of it to a integer variable. for sample:
String date_time = "20080519145436";
By above string result ...
-4
votes
4answers
191 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
173 views
C# timestamp comparison by string.Compare
Will using string.Compare(timeA,TimeB) always return -1 given that:
timeA is a timestamp that happened before timeB
and
both are in this format: 12/27/2012 00:59:06 aka mm/dd/yyyy hh:mm:ss via ...
2
votes
2answers
177 views
Converting basic type (dates, numbers) to string and back for saving to a database in C#
I have a recurring configurable task that receives a table name and a column name, then fetches rows from that table sorted by the specified column and does some processing on them. At the end it ...
1
vote
4answers
374 views
Converting string to DateTime [duplicate]
Possible Duplicate:
Date time format from string?
Does anyone know how I could convert the following string to a DateTime value in C# ?
"Thu Nov 15 2012 00:00:00 GMT+0300 (E. Africa ...
0
votes
1answer
70 views
CakePHP view variable as datetime instead of string
In my AppController beforeFilter i am saving user data to variables for use in my view. I need to grab the last_login field that is a datetime and then use the dateformat function to display the date ...
4
votes
5answers
110 views
String conversion to datetime
Is it possible to convert the below date strings to DateTime objects?
"Friday 31 August 2012";
"26-Jul-2012"
"190811"
I tried in this form:
DateTime.TryParse("Friday 31 August 2012"
...
2
votes
3answers
72 views
Fetching a non-datetime string value from a column
I recently ran a script to copy data from one large table (around 20 GB) to another, where I messed up, and the column values for a datetime column (called timestamp) got saved into another column ...
2
votes
1answer
83 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";
...
2
votes
4answers
188 views
Custom DateTime formatting in c#
I have a variable which is printed out using the following string format:
var printThis = String.Format("{0:d}, {0:T}", dateAndTimeVar);
Now I have a problem; I need '{0:T}' to display something ...
0
votes
2answers
59 views
small issue while coverting string value in Date
I am unable to covert String values in The Java.util Date format.
This is my code
String string = "24-Nov-2012 14:21:56";
Date soldate = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss ...
-2
votes
1answer
76 views
How to join three strings to a single datetime value?
i have to write a code which can join three string values from textboxes to a single datetime value.
For example: textbox1.text is my day value . Think, i write 05.
textbox2.text is my ...
1
vote
1answer
181 views
split string into groups of given size
My situation is I have a list of time-stamped items, but the actual time-of-day is all squished together. Like this:
time = "165420" # 16:54:20 (or, 4:54 PM and 20 seconds.)
I wanted a script to go ...



