Tagged Questions

Time formats are specifications used for unambiguous representation of dates and times. The International Standard for the representation of dates and times is ISO 8601. Each software platform usually provides APIs in order to parse dates or time in a language-independent manner.

learn more… | top users | synonyms

9
votes
3answers
427 views

How to get time format using country ISO code in android?

I am working on simple application to show the time in different formate. To show the time I am displaying ISO country code using this ISO code. Can I able to change time in that ISO country format? ...
6
votes
9answers
611 views

What time format is this? (not UNIX, not UTC, nothing)

I'm importing data from another system to MySQL, its a CSV file. The "Date" field however contains cryptic of 3-digit time entries, here's a random sample set: > 540 > 780 > 620 > 965 ...
4
votes
4answers
627 views

C# Time Formatting. Localization to French how do I get the output “5h 45” for 5:45?

I'm attempting to format dates for a French customer. I need to format Times as shown in the following examples... 06:00 -> 6 h 08:45 -> 8 h 45 10:30 -> 10 h 30 15:00 -> 15 h 17:22 -> 17 h ...
3
votes
4answers
72 views

How to convert milliseconds to “hh:mm:ss” format?

I'm confused. After stumbling upon this thread, I tried to figure out how to format a countdown timer that had the format hh:mm:ss. Here's my attempt - //hh:mm:ss String.format("%02d:%02d:%02d", ...
2
votes
1answer
755 views

jQuery jqPlot library 12 hour Time Y-Axis Inversion issue

I've started using jqPlot recently. The generated graphs look amazing and I love it. There are a few little things to learn here and there, but overall it's great. I'm using the stacked bar ...
2
votes
2answers
136 views

What time format is this and how can I reformat it using JQuery?

What time format is this and how can I reformat it using JQuery? It's from a pubdate from an podcast XML. Mon, 26 Jul 2010 19:15:58 -0700 Is there a precise name for this date format? I haven't ...
2
votes
6answers
2k views

How do I format an amount of milliseconds into minutes:seconds:milliseconds in PHP?

I have a total ammount of milliseconds (ie 70370) and I want to display it as minutes:seconds:milliseconds ie 00:00:0000. How can I do this in PHP?
1
vote
3answers
32 views

Program to convert Time in Seconds To hh:mm:ss format

I am trying to make a simple program to convert time given in seconds to hh:mm:ss format. But for some particular input values it produces incorrect time format. This is what I have tried : Public ...
0
votes
1answer
39 views

What Kind of Time Format is this “P16DT1H58M47S”?

I am parsing some data on a website using PHP and it gives me the amount of time in this format: P16DT1H58M47S But they don't always have the number of days, like so: PT8H10M3S And sometimes no ...
0
votes
1answer
40 views

What is the time format used in KML files?

I am parsing a KML file on the iPhone, and I need to know what the time format of this string from the KML file is: 2011-05-16T08:00:59Z. I think it is somewhere along the lines of the following, but ...
0
votes
3answers
91 views

simple java program that enables 2 Time-format input and count the time-difference

I'd like to know how to make a simple program where user can gave 2 input time(hh:mm) format ---and receive the elapsing time as the output. the program will run and enable user to write time-input.. ...
0
votes
1answer
45 views

How to find that the time-format mode in iPhone?

How can we find the time format (whether 12 hours or 24 hours) mode in iPhone?
0
votes
2answers
101 views

Convert simple time format to Special time format (hhmmt)

I'm trying to convert the time format (hh:mm:ss) to this Special Time Format (hhmmt)? The Special Time Format (STF) is a 5 digit integer value with the format [hhmmt] where hh are the hours, mm are ...
0
votes
1answer
94 views

Excel Stopwatch Time format

My excel showed 00:59:49. But when I double click it, it showed 12:59:49 AM. I already used formatting bit select CUSTOM and enter hh:mm:ss Is there any suggestion to remove AM and change 12 to 00 ? ...
0
votes
0answers
116 views

SharePoint Time format: leading zero in hours

What one from Regional Settings does affect appearance of hours leading zero in SharePoint datetime fields? I use 24H format, English US locale for my web, and zero is output sometimes, when I change ...
0
votes
1answer
168 views

Set row format time in agendaWeek view of jquery fullcalendar

How can I change format time in agendaWeek row? Set HH:mm for example.
0
votes
2answers
113 views

What about TimeFormat? Converting Timestamp

How to format a java.sql Timestamp for displaying ? What about TimeFormat, how can I convert a Timestamp as a String showing the time?
0
votes
2answers
5k views

Customize the datetime format in Cakephp

When I use the form helper to make a time input,usaually I write code as follows <?php $options = array( 'label' => '', 'type' => 'datetime', 'timeFormat'=>'24', ...