-1
votes
2answers
40 views

NSDateFormatter with default time zone gives different date than NSDate description method

NSDate *date = [NSDate dateWithTimeIntervalSince1970:timestamp]; NSDateFormatter *_dateFormatter = [[NSDateFormatter alloc] init]; [_dateFormatter setTimeZone:[NSTimeZone defaultTimeZone]]; ...
-1
votes
1answer
40 views

How do I use conditional formatting in Excel 2010 to highlight a cell newer / older than an arbitrary date? [closed]

This is such a simple stupid question it SHOULD be really easy. Sadly, Excel is not cooperating! I'm using Excel 2010, I have a column of dates (Criminal History Check most recent approval dates). I ...
0
votes
2answers
36 views

datetime formatting in javascript

When I generate a date with the following code var date = new Date(); I get a date-time of the following form Sat May 11 2013 21:54:23 GMT-0700 (PDT) Can anyone tell me how to generate a date of ...
0
votes
2answers
22 views

Date formatting in php, unexpected result

The Script Below: <?php $postedDate = "Sat May 11 2013 20:36:24 GMT-0700 (PDT)"; $date = date('Y-m-d H:i:s', strtotime($postedDate)); echo json_encode($date); ?> Returns the value: ...
0
votes
4answers
72 views

How to tell if an existing java.util.Date matches a particular format

I am being passed a java.util.Date instance and need to make sure it conforms to a MM/dd/YYYY format. How can I perform such validation (sans libraries like Joda Time)? I checked the API methods for ...
0
votes
1answer
39 views

Formatting a java.util.Date through xsl built-in funciotn “format-dateTime” displays language

I'm using an xslt transformation to format a Java object to pdf through Apache FOP libraries. In particular I want to format a field of my object, a java.util.Date into DD/MM/YYYY format. To be able ...
6
votes
3answers
169 views

Omitting redundant months and years in date range list

I have got strange issue with dates of events and I have tried hard to get it fixed but unable to do it. I am attaching a screenshot of how I want to display the dates on the page : In the picture ...
0
votes
1answer
61 views

xmlgregoriancalendar formatting in MM/dd/yyyy

I have a variable of type date in the format MM/dd/yyyy. I need to convert the tempdate to xmlgregoriancalendar type in the same format i.e., MM/dd/yyyy. The default format when created using ...
0
votes
0answers
146 views

HQL script date to string with given format

I am using a hql insert script file to load my application's startup data in a mem db with schema creation. There is a date text column and it's data comes from an outside source and saved as text in ...
3
votes
2answers
46 views

ASP.net date formatting

I have bound date fields(datetime type column values) to my Grid. In the grid, the column definition is like so:<asp:Label ID="lblFromTimeForTeacher" runat="server" Text='<%# Eval("FromTime", ...
0
votes
2answers
299 views

SQL date formatting

I have a datetime column in my table. How to I display only the time? Say, the value in the column is 2013-03-25 08:40:00.000. How do I display the value 08:40 alone? Thanks in advance.
0
votes
1answer
94 views

JQGrid date formatter not applying local time offset correctly : Grails

I have a simple table in the DB (MySql) which contains the date in the standard Date format. I am doing a simple select in grails and rendering the output to a JSON format for the jqgrid to pick up. ...
0
votes
3answers
76 views

Formatting date stored in phpmyadmin

I'm querying a database and echoing the "date" column using PHP. The date is displaying as YYYY-MM-DD, as it is saved under the "date" data type. Which function would be best suited to convert the ...
0
votes
1answer
74 views

Format date from json with Jquery

I'm trying to write a autocomplete for TMDb, but I can't figure out how to format the date. The TMDB API returns a date like 2001-12-19. I want to display the data like Title (Year). I've tried to ...
0
votes
2answers
48 views

What is the complete list of formatting strings for Dates in groovy?

Where can I find a list of all formatting strings that Groovy can use when outputting a date? The Groovy documentation seems to be very sparse on the matter.
0
votes
3answers
340 views

Changing the date format to mm-dd-yyyy hh:mm

I'm trying to use this code private static Date getTimeStamp() { return new Timestamp(new Date().getTime()); } what i'm getting result is 2013-03-13 12:46:22.011 But what i need that Timestamp ...
0
votes
0answers
45 views

Sort & limit records by year

I have a page called events that lists various events that are taking place. It is split into two pages; events which lists current and upcoming events & events/past which lists all events that ...
0
votes
3answers
26 views

string modification messes formatting in PHP

$str = date("d")+1 . date("-m") . date("-y"); $date = new DateTime($str); echo $date->format('y-m-d '); This works fine, but... $str = date("d")+1 . date("-m") . date("-y"); $date = new ...
0
votes
1answer
46 views

convert date format within a webservice php context

I am consuming a webservice in php. The piece of code below gives me the following result with regard to the date notation: Begindatum : 2012-07-02T00:00:00. I would like to have that in a European ...
1
vote
2answers
137 views

RFC-822 date-time format in RSS 2.0 feeds: CET not accepted?

[Updated with working solution] I have an RSS feed which gets displayed correctly in RSS clients, but when being validated by http://feedvalidator.org I get this error: pubDate must be an RFC-822 ...
1
vote
1answer
106 views

How should I show this apparently really old date in Crystal Reports?

I have a string field where dates are sometimes entered as YYYY-MM-DD, and am displaying it on a Crystal Report as a date. I was using DateValue ({Table.Field}) to show the date, then formatting ...
1
vote
1answer
330 views

Ordering issue with date values when creating pivot tables

I have a 2-column spreadsheet which contains Dates and Sales figures as follows: When doing Right click -> Format Cells the values in the Dates column properly appear as Date (in the M/D/YYYY ...
0
votes
0answers
81 views

BIRT Date Conditions Filter

I would like to set a User Parameter inside my BIRT Report that will perform following data retrieval : "Show all customers who have Birthday today" "Show all customers who have Birthday this month" ...
0
votes
1answer
102 views

MySQL date conversion(“30-Jan-2013” to “2013-01-28”)

In my page (PHP), I have date format like this: "30-Jan-2013". I want to convert this format to "2013-01-28". Is it possible in MySQL date format?
0
votes
0answers
70 views

Using simple_form to display a list of every Friday for the next 6 months

I have a model which is used for sending emails from Rails for registering for a meeting, the meeting takes place every Friday. I would like a visitor to be able to select the date they would like to ...
1
vote
2answers
66 views

powershell date from keyboard

I have a script that renames files to dates entered by the user at the keyboard- It's very simple, just asks for the month, day, and year. As long as the user enters 2-digit values, it works well... ...
0
votes
3answers
72 views

Date / Time showing odd value in PHP

I have wierd issues with time / date in PHP this year. Code have not changed at all and my dates are bugged. Code is for example: $date = strtotime($order['date']); $dateNew = date('Y-m-d h:i A', ...
-2
votes
3answers
3k views

Linux Bash - Date Format

My date format is yyyy-mm-dd-hh:mm:ss How do I check my input? It should be something like this: !/bin/bash read -p "Date (format yy-mm-dd-HH-MM-SS): " input check=$(date +"%Y-%m-%d-%H:%M:%S") if ...
0
votes
1answer
76 views

python INT / date formatting

I am trying to use datetime module. I need the month to come back as a INT with the ZERO in front. in the form as 01 for JAN, 02 for FEB etc etc. I can get 1 by using, today = date.today() m = ...
1
vote
1answer
161 views

Matplotlib: Formatting date in day.month.year style

I want to plot some lines with the date on the x axis, but all examples I could find use the American style like 12-31-2012. But I want 31.12.2012, but it doesn't seem to work by just changing the ...
0
votes
4answers
146 views

Format date in a specific format

I have parsed an RSS feed and I am looking for how to format the date properly. I am trying to get it to say something like, Wednesday, December 4, 2012. I am running it through a for loop to ...
2
votes
2answers
81 views

How to force dateFormat to take exactly the specified number of characters as valid?

The following code... SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd"); df.setLenient(false); Date date = df.parse("2012115"); ...parses the string "2012115" to the Date equivalent of ...
0
votes
1answer
49 views

Formatting the data coming from webservice

I am using asp.net and vb.net (code behind) to fetch some data from a web service. While fetching the data I am unable to format it. I tried this: label_date.test = trim(arData(25)) Which gives ...
1
vote
1answer
121 views

Why can't nlog read the current date

I'm using Nlog to write some logging to a textfile. Partial nlog.config: <target name="file" xsi:type="File" fileName="${basedir}/MBWRunner_log.txt" layout="${date} (${level}): ...
0
votes
2answers
218 views

the exception with parsing a date YYYY-MM-DD HH:mm:ss

I try to parse a date in the format YYYY-MM-DD HH:mm:ss String now = "2012-11-02 12:02:00"; DateFormat formatter; formatter = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy"); Date date_temp = ...
-1
votes
1answer
96 views

How to format a string as a date

Ok so im trying to display a date that i got from a database Here's what i can display without any formatting: 2012-11-21 19:00:00 what im trying to display is: 2012-11-21 at 19:00:00 below is the ...
0
votes
1answer
73 views

Javascript - Write out date depending on location [duplicate]

Possible Duplicate: How do I display a date/time in the user’s locale format and time offset? We write things differently, and date is one of these things. I would like to display A date ...
0
votes
5answers
58 views

Weird behaviour of Calendar and DateFormat

I encountered really strange behaviour when constructing a Calendar object and then formating it in a particular style. Let the code do the talking: public class Test { public static void ...
0
votes
1answer
122 views

Excel, VB - Character Operations & Date Reformating Inside Array

ISSUE Large dataset with many improperly or non-uniformly entered dates in a specific field. There are about 19 different ways the dates have been entered in about 60,000 records. Some entries are ...
0
votes
2answers
126 views

Java: return date format in random date [duplicate]

Possible Duplicate: how to convert current date into string in java? How do I return the date in the format dd/mm/yyyy? in package random01; import java.text.DateFormat; import ...
-3
votes
4answers
384 views

Changing date format in php? [closed]

Currently I have a date format like this: 2012-07-24 I want to change it to this format: July 07, 2012, Friday
0
votes
2answers
99 views

Do I need to provide an IFormatProvider when converting a date to a string with a specific format?

If I'm using this: DateTime.Now.Date.ToString("yyyy-MM-dd") FXCop complains that I'm violating CA1305 and says that I should provider an IFormatProvider. Do I need to? I'm asking for the date in ...
0
votes
3answers
88 views

Issue with date formatting SQL

SELECT LISTING_EOD.LOCATION, LISTING_EOD.APPTTIME, LISTING_EOD.PERSON_ID, LISTING_EOD.FORENAME, LISTING_EOD.SURNAME, LISTING_EODS.STATUS, LISTING_EOD.DBDATE FROM DBNAME.LISTING_EOD ...
0
votes
1answer
86 views

.NET using long date format

In my applications I have a grid which is bound to the object. This object has properties of DateTime type and it shows my dates in short date format specified in Control Panel. How can I force it to ...
4
votes
1answer
1k views

How to AngularJS Date from json

i'm a newbie in angularjs i'm trying to bind a date property to a input(text) but i don't know how to format the date. my json object controler: $scope.datasource = {"prop1":"string data", ...
0
votes
1answer
40 views

Determine the 4 digit date to save if a 2 digit date is input

I've added a formats.py file to my django project to set the date format to display dd/mm/yyyy throughout the application. However people must be able to enter a date as d/m/yy also. If you were to ...
0
votes
2answers
99 views

Android getting time and date in specified format

I am using following code to display date and time: String currentDateTime =java.text.DateFormat.getDateTimeInstance().format(Calendar.getInstance().getTime()); textViewDay.setText(currentDateTime); ...
0
votes
1answer
566 views

Smarty date formats?

I am building an rss feed. I need to output a date, I am passing though a date that the date_format function can understand, but I am not sure how to format the date so it fits with the RFC 822 ...
1
vote
1answer
593 views

How to find difference between two dates in jsp?

I have a date format like "MMMM dd, yyyy" and i am using <fmt:formatDate value="${purchaseDate}" pattern="MMMM dd, yyyy"/> and i have to compare this with the current date and check whether the ...
0
votes
1answer
55 views

Why is the date being incorrectly converted?

I'm trying to convert a String date into a Date object like this: DateFormat formatter ; Date date ; formatter = new SimpleDateFormat("dd/mm/yyyy"); date = (Date)formatter.parse(str_date); ...

1 2 3 4