gpt4 book ai didi

javascript - 如何判断日期字符串是否包含已在 Javascript 中添加的时间偏移量?

转载 作者:行者123 更新时间:2023-11-28 09:23:20 24 4
gpt4 key购买 nike

考虑这个日期字符串:

"2012-08-20T15:00:00-07:00"

它添加了时间偏移作为“-07:00”我怎样才能知道它添加了这个偏移量?我知道我可以用正则表达式来做到这一点。但是还有其他更简单的方法吗?

或者有人有它的正则表达式吗?

最佳答案

I know I can do it with regular expressions, but is there any other easier way?

我不这么认为,正则表达式是可用的最简单的模式匹配器。

does any one have the regex for it?

我认为应该这样做:

/[+-]\d\d:\d\d$/.test(datestring)

如果你想解析它,请使用

var match = /([+-]?\d\d):(\d\d)$/.exec(datestring);
if (match)
return parseInt(match[1], 10)*60 + parseInt(match[2], 10)*(match[1].charAt(0)=="-"?-1:1);
return 0;

关于javascript - 如何判断日期字符串是否包含已在 Javascript 中添加的时间偏移量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14715611/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com