首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >24小时unix时间戳的正则表达式

24小时unix时间戳的正则表达式
EN

Stack Overflow用户
提问于 2017-07-26 12:29:25
回答 2查看 5.3K关注 0票数 0

我想为24小时unix时间戳创建一个正则表达式,例如:01/01/2015 00:00:00 **(1420066800)** to 01/01/2015 23:59:59 **(1420153199)**,这是一个86399秒的差异。在unix时间戳格式中。

我正在使用range_regex python,但是它对于这么大的范围来说是一个but。range_to_pattern方法(range_to_pattern(1420066800, 1420153199))将生成一个正则表达式:1420[0-1][5-6][3-6][1-8]\\d{2} --这对于静态边界来创建正则表达式是很好的,但是当涉及到诸如:1420159111这样的值时,因为左边的7位数(9)不在第三个范围组(3-6)中。

有人能提供一个更好的python3库或如何创建86400秒的正则表达式的解决方案吗?一天?

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2017-07-26 13:10:59

根据我上面的评论,您使用了那个库中的错误函数。

您应该使用以下方法:

代码语言:javascript
运行
复制
range_to_regex(1420066800, 1420153199)

这将返回正确的regex:

代码语言:javascript
运行
复制
142006680\d|14200668[1-9]\d|14200669\d{2}|142006[7-9]\d{3}|14200[7-9]\d{4}|14201[0-4]\d{4}|142015[0-2]\d{3}|1420153[0-1]\d{2}
票数 1
EN

Stack Overflow用户

发布于 2017-07-26 13:13:12

代码语言:javascript
运行
复制
# coding=utf8
# the above tag defines encoding for this document and is for Python 2.x compatibility

import re

regex = r"1420([0]([6]([6]([8]([0][0-9])|[9][0-9]{2})|[7-9][0-9]{3})|[7-9][0-9]{4})|[1]([5]([3]([1]([9][0-9]|[0-8][0-9]{1})|[0][0-9]{2})|[0-2][0-9]{3})|[0-4][0-9]{4}))"

test_str = ("01/01/2015 00:00:00 (1420066800) до 01/01/2015 23:59:59 (1420153199)\n\n"
    "1420016799     -no\n"
    "1420066799     -no\n"
    "1420066800     -yes\n"
    "1420066801     -yes\n"
    "1420067820     -yes\n"
    "1420067920     -yes\n"
    "1420073199     -yes\n"
    "1420103199     -yes\n"
    "1420152191     -yes\n"
    "1420153181     -yes\n"
    "1420153199     -yes\n"
    "1420153200     -no\n"
    "1420163199     -no")

matches = re.finditer(regex, test_str)

for matchNum, match in enumerate(matches):
    matchNum = matchNum + 1

    print ("Match {matchNum} was found at {start}-{end}: {match}".format(matchNum = matchNum, start = match.start(), end = match.end(), match = match.group()))

    for groupNum in range(0, len(match.groups())):
        groupNum = groupNum + 1

        print ("Group {groupNum} found at {start}-{end}: {group}".format(groupNum = groupNum, start = match.start(groupNum), end = match.end(groupNum), group = match.group(groupNum)))

# Note: for Python 2.7 compatibility, use ur"" to prefix the regex and u"" to prefix the test string and substitution.

在线:https://regex101.com/r/blnST4/1

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/45327033

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档