Questions tagged «date-formatting»

日期格式是显示,处理或将日历日期转换为特定格式的过程。




6
如何在moment.js中将日期格式化为ISO 8601?
该文档提到moment.ISO_8601了一种格式设置选项(从2.7.0- http: //momentjs.com/docs/#/parsing/special-formats/ ),但是这些都不起作用(甚至是2.7.0): var date = moment(); date.format(moment.ISO_8601); // error moment.format(date, moment.ISO_8601); // error (http://jsfiddle.net/b3d6uy05/1/) 如何从moment.js获取ISO 8601?

10
在MySQL查询中将时间戳转换为日期
我想将timestampMySQL中的A 转换为日期。 我想将user.registration字段格式化为文本文件yyyy-mm-dd。 这是我的SQL: $sql = requestSQL("SELECT user.email, info.name, FROM_UNIXTIME(user.registration), info.news FROM user, info WHERE user.id = info.id ", "export members"); 我还尝试了日期转换: DATE_FORMAT(user.registration, '%d/%m/%Y') DATE(user.registration) 我在写文本文件之前回显结果,然后得到: email1; name1; DATE_FORMAT(user.registration,'%d /%m /%Y');新闻1 email2; name2; news2 如何将该字段转换为日期?


8
将NSDate格式化为年,月,日以及时,分,秒的特定样式
我基本上需要分别获取当前日期和时间,格式为: 2009-04-26 11:06:54 下面的代码来自同一主题的另一个问题,它生成 现在:| 2009-06-01 23:18:23 +0100 | dateString:| 2009年6月1日23:18 | 解析:| 2009-06-01 23:18:00 +0100 | 这几乎是我想要的,但是我想将日期和时间分开。 NSDateFormatter *format = [[NSDateFormatter alloc] init]; [format setDateFormat:@"MMM dd, yyyy HH:mm"]; NSDate *now = [[NSDate alloc] init]; NSString *dateString = [format stringFromDate:now]; NSDateFormatter *inFormat = [[NSDateFormatter alloc] init]; [inFormat setDateFormat:@"MMM dd, yyyy"]; …

6
是否有日期格式可以用Java显示星期几?
我知道日期格式,例如 "yyyy-mm-dd"-以格式2011-02-26 "yyyy-MMM-dd"显示日期-以格式显示日期2011-FEB-26 用于例如: SimpleDateFormat formatter = new SimpleDateFormat( "yyyy/MMM/dd "); 我想要一种可以帮助我显示星期几之类的格式2011-02-MON。我只希望将星期几与月份和年份一起显示。你能告诉我这样的格式吗?

10
ISO 8601如何在JavaScript中格式化带有时区偏移的日期?
目标:找到local time,UTC time offset然后以以下格式构建网址。 示例网址:/ Actions / Sleep?duration = 2002-10-10T12:00:00−05:00 该格式基于W3C建议:http : //www.w3.org/TR/xmlschema11-2/#dateTime 该文档说: 例如,2002-10-10T12:00:00-05:00(2002年10月10日中午,美国中部夏令时以及美国东部标准时间)等于2002-10-10T17:00:00Z,比2002-10-10T12:00:00Z晚五个小时。 因此,根据我的理解,我需要通过新的Date()查找我的本地时间,然后使用getTimezoneOffset()函数计算时差,然后将其附加到字符串的末尾。 1.获取本地时间格式 var local = new Date().format("yyyy-MM-ddThh:mm:ss"); //today (local time) 输出 2013-07-02T09:00:00 2.获取UTC时间偏移小时 var offset = local.getTimezoneOffset() / 60; 输出 7 3.构造URL(仅限时间部分) var duration = local + "-" + offset + ":00"; 输出: 2013-07-02T09:00:00-7:00 上面的输出表示我的本地时间是2013/07/02 …

5
R中字符串到日期的转换的“标准明确日期”格式是什么?
请考虑以下 $ R --vanilla > as.Date("01 Jan 2000") Error in charToDate(x) : character string is not in a standard unambiguous format 但该日期显然是标准的明确格式。为什么会显示错误消息? 更糟糕的是,一个模棱两可的日期显然没有任何警告或错误就被接受,然后被错误地阅读! > as.Date("01/01/2000") [1] "0001-01-20" 我搜索并在[R]标记中找到包含此错误消息的28个其他问题。所有解决方案和解决方法都涉及指定iiuc格式。这个问题的不同之处在于,我要问的是,标准明确格式在哪里定义,并且可以更改吗?每个人都收到这些消息还是仅仅是我?也许与语言环境有关? 换句话说,是否有比指定格式更好的解决方案? 包含“ [R]标准明确格式”的29个问题 > sessionInfo() R version 2.15.2 (2012-10-26) Platform: x86_64-w64-mingw32/x64 (64-bit) locale: [1] LC_COLLATE=English_United Kingdom.1252 [2] LC_CTYPE=English_United Kingdom.1252 [3] LC_MONETARY=English_United Kingdom.1252 …

12
Oracle的默认日期格式为YYYY-MM-DD,为什么?
Oracle的默认日期格式为YYYY-MM-DD。这意味着如果我这样做: select some_date from some_table ...我失去了约会的时间部分。 是的,我知道您可以使用以下方法“解决”此问题: alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss'; 但是说真的,为什么上面的默认值不是默认值?特别是在DBMS中,两个主要的时间跟踪数据类型(DATE和TIMESTAMP)都具有时间分量,该时间分量包括(至少)精确到1秒的时间。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.