- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
更新
从 iOS 7 开始,NSDateFormatter 在以这种格式显示字符串时确实会创建一个 NSDate:
NSDateFormatter *formatter = [NSDateFormatter new];
[formatter setDateFormat:@"@"yyyy'-'MM'-'dd'T'HH':'mm':'ssZ""];
NSLog(@"non–nil date, even honoring the 7–minute–offset in the time–zone on iOS 7: %@",
[formatter dateFromString:@"2011-07-12T18:07:31+02:07"]);
对于 iOS 6,答案是不要使用 NSDateFormatter…
NSDateFormatter
为了创建一个
NSDate
从一个字符串中。
2011-07-12T18:07:31+02:00
成
NSDate
?
GMT
就没有问题了前缀“+”-符号,但是... @"yyyy'-'MM'-'dd'T'HH':'mm':'ssz':'00"
)但那当然是
不正确 因为它会丢弃时区的分钟信息。
NSDateFormatter
从上面取出那个字符串并给我一个有效且正确的
NSDate
?
+[NSDate dateWithNaturalLanguageString:]
以实现我的目标。然而,这只是设置日期,而不是时间! (好吧,它确实设置了时间,但只考虑了时区偏移,而不是 HH:mm:ss 部分......)
最佳答案
这个问题有点老了,但我遇到了同样的问题。我想出了一些代码,这是一个答案,可能对其他人有用......
我使用正则表达式来解析 ISO-8601 字符串并将输出抓取到一堆字符串中,然后您可以使用它来创建自己的字符串以传递给 NSDateFormatter(即删除冒号等),或者如果您总是想要相同的输出字符串,只需从调用 NSRegularExpression 的结果中创建它。
// ISO-8601 regex:
// YYYY-MM-DDThh:mm[:ss[.nnnnnnn]][{+|-}hh:mm]
// Unfortunately NSDateFormatter does not parse iso-8601 out of the box,
// so we need to use a regex and build up a date string ourselves.
static const char * REGEX_ISO8601_TIMESTAMP =
"\\A(\\d{4})-(\\d{2})-(\\d{2})T(\\d{2}):(\\d{2})" // Mandatory - YYYY-MM-DDThh:mm
"(?:"
":(\\d{2})" // Optional - :ss
"(?:"
"[.](\\d{1,6})" // Optional - .nnnnnn
")?"
")?"
"(?:"
"([+-])(\\d{2}):(\\d{2})|Z" // Optional -[+-]hh:mm or Z
")?\\z";
// Extract all the parts of the timestamp
NSError *error = NULL;
NSString *regexString = [[NSString alloc] initWithUTF8String:REGEX_ISO8601_TIMESTAMP];
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:regexString
options:NSRegularExpressionCaseInsensitive
error:&error];
NSArray *matches = [regex matchesInString:timestamp
options:0
range:NSMakeRange(0, [timestamp length])];
// Groups:
//
// elements start at 1 in the array returned from regex, as [0] contains the original string.
//
// MANDATORY - must exist as per ISO standard
// 1 - YYYY
// 2 - MM
// 3 - DD
// 4 - hh
// 5 - mm
// OPTIONAL (each one can be optional)
// 6 - ss
// 7 - nn (microseconds)
// 8 - offset sign (+/-)
// 9 - offset hour
// 10 - offset min
// put the parts into a string which will then be recognised by NSDateFormatter
// (which is acutally RFC822 format)
// mandatory init'd to nil, optional set to defaults.
NSString *YYYY, *MM, *DD, *hh, *mm, *ss, *nn, *sign, *Zhh, *Zmm;
NSRange tempRange;
for (NSTextCheckingResult *match in matches) {
NSRange matchRange = [match range];
NSInteger matchCount = [match numberOfRanges] - 1;
NSUInteger idx = 1;
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
YYYY = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
MM = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
DD = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
hh = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
mm = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
ss = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
nn = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
sign = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
Zhh = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
if (idx < matchCount) {
tempRange = [match rangeAtIndex:idx++];
Zmm = tempRange.location != NSNotFound ? [timestamp substringWithRange:tempRange] : nil;
}
}
关于NSDateFormatter 和时区格式为 "+HH:mm"的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6667829/
我有两个 javascript 变量(它们来自文本框,所以它们可能被评估为字符串),格式如下:02:30 和 4:45 它们代表小时和分钟。 我想将它们加在一起得到 07:15,但我无法计算出来。 最
我有时间数据库,我想获得时间序列数据的每小时平均值。 示例数据: 1 -1.64 2007-09-29 00:01:09 2 -1.76 2007-09-29 00:03:09 3
我有一个项目,其中使用 Bison 来生成解析器。项目本身是用 SCons 构建的,我的所有代码都是用 C++ 编写的。我一开始就决定将代码分成 3 个主要目录:includes、src 和 test
我正在尝试编写一个将返回当前时间的 SQL 查询,如下所示: HH:MM - HH:MM (+1) 例如如果时间是 14:00,它将返回 14:00 - 15:00 我已经设法做到了以下几点: SEL
关闭。这个问题需要更多focused 。它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 已关闭 3 年前。 Improve this qu
这是我的原始代码- String dateString = "23 Dec 2015 1:4 PM"; Locale locale = new Locale("en_US"); SimpleDateF
我们正在访问允许我们安排日期/时间的 API。我们需要检查预定的事情,这样我们就不会在同一时间重复预订。 API 返回的时间与军事中的 HH 一样。但是,它使用的是 UTC HH。因此,如果我们在下午
final String sourceDate = "05.12.2014 12:17"; final String testDate = "05.12.2014 13:17"; fi
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 7 年前。 Improve t
kk:mm、HH:mm 和 hh:mm 格式有什么区别?? SimpleDateFormat broken = new SimpleDateFormat("kk:mm:ss"); br
在单元格 B239 中,我有 37:15,代表某人完成一项任务所花费的总小时数。在单元格 C239 中,我有以下公式 =INT(B239)*24+小时(B239)+圆形(分钟(B239)/60,2)
我需要在从 HH: 05 到 HH: 59 的时间每小时列出 MAX () 温度 我有 mySQL 代码: SELECT FROM_UNIXTIME(FLOOR(UNIX_TIMESTAMP(
我正在使用 PHP 和 MySQL。如何将格式为 HH:MM AM/PM 的时间转换为 HH:MM:SS 以节省 MySQL 的时间? 最佳答案 使用 strtotime 将其转换为时间戳,然后使用
我想知道是否可以使用 moment.js 将 sql TIME (HH:mm:ss) 转换为 HH:mm。或者也许有一个简单的 JavaScript/jQuery 解决方案? 最佳答案 是的,你可以:
我正在寻找一个正则表达式来匹配不同的时间格式(用于时间跟踪网络应用程序)在 javascript 中。用户可以使用以下格式之一插入时间: h hh:mm hh.mm 我可以很容易地创建一个正则表达式来
我们如何在java中比较日期并获取剩余的可用插槽? Sun 10:00-11:00 Sun 12:00-14:00 Sun 15:00-16:00 那么除了这三个时段之外,我们如何才能获得一天中的所有
如何在 SQL Server 中将 hh:mm:ss 转换为 hh:mm? select Count(Page) as VisitingCount,Page,CONVERT(VARCHAR(8),Da
假设我的时间是 13:45。 现在我想使用 moment.js 将其转换为 13:45:00。 我在做moment('13:45').format('h:m:s'); 但它不起作用。 最佳答案 使用m
我想将时间从 hh:mm:ss 转换为 hh:mm它以 hh:mm:ss 的形式来自数据库(我的 sql)。我尝试了以下代码,但没有得到我想要的。 try { s= Hibernat
我希望这对某人来说是小菜一碟!目前,所有内容的字符串输出均为上午 12:00。 以下来自 MySQL 的代码,格式为 HH:MM:SS (hours_open, hours_close) $get_h
我是一名优秀的程序员,十分优秀!