Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 504307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:29:00+00:00 2026-05-13T06:29:00+00:00

This is a great regular expression for dates… However it hangs indefinitely on this

  • 0

This is a great regular expression for dates… However it hangs indefinitely on this one page I tried… I wanted to try this page ( http://pleac.sourceforge.net/pleac_python/datesandtimes.html ) for the fact that it does have lots of dates on it and I want to grab all of them. I don’t understand why it is hanging when it doesn’t on other pages… Why is my regexp hanging and/or how could I clean it up to make it better/efficient ?

Python Code:

monthnames = "(?:Jan\w*|Feb\w*|Mar\w*|Apr\w*|May|Jun\w?|Jul\w?|Aug\w*|Sep\w*|Oct\w*|Nov(?:ember)?|Dec\w*)"

pattern1 = re.compile(r"(\d{1,4}[\/\\\-]+\d{1,2}[\/\\\-]+\d{2,4})")

pattern4 = re.compile(r"(?:[\d]*[\,\.\ \-]+)*%s(?:[\,\.\ \-]+[\d]+[stndrh]*)+[:\d]*[\ ]?(PM)?(AM)?([\ \-\+\d]{4,7}|[UTCESTGMT\ ]{2,4})*"%monthnames, re.I)

patterns = [pattern4, pattern1]

for pattern in patterns:
    print re.findall(pattern, s)

btw… when i say im trying it against this site.. I’m trying it against the webpage source.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T06:29:00+00:00Added an answer on May 13, 2026 at 6:29 am

    You should read Mastering Regular Expressions. The problem is:

    (?:[\d]*[\,\.\ \-]+)*
    

    which takes exponential time. Try using:

    (?:[\d,. \-]*[,. \-])?
    

    which should match the same things but take linear time. Having checked your example, this does indeed speed things up.

    You also appear to have accidentally introduced capturing groups into your pattern at some point: change e.g. (AM) to (?:AM) to fix that. This gets us the following output from your example above:

    [' Aug  6 20:43:20 2003', ' Mar 14 06:02:55 1973', ' March 14 06:02:55 AM 1973', ' Jun 16 20:18:03 1981']
    ['2003-08-06', '2003-08-07', '2003-07-23', '1973-01-18', '3/14/1973', '16/6/1981', '16/6/1981', '16/6/1981', '16/6/1981', '08/08/2003']
    

    To get into details (which the book I reference is very good at), * and + work (in NFAs like python’s re) rather like a loop. The original pattern’s inner loop will match against a long string of digits, but when the subsequent pattern fails to match, it will “give them up” one at a time. The outer loop will then rerun the inner loop on the remaining pattern, and of course it will immediately grab the digits again. Each time one instance of the inner loop relinquishes a digit, a new copy will be summoned to grab it again. Eventually, once the engine has gone through every possible way of splitting that string of digits (an exponential number of possibilities), it will move the starting point forwards one character…and try again.

    On another note, your pattern looks a bit bonkers 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 371k
  • Answers 371k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer No, simply installing the new provisioning profile on the target… May 14, 2026 at 7:04 pm
  • Editorial Team
    Editorial Team added an answer Arrrr, Stero isn't localised. It all makes sense now because… May 14, 2026 at 7:04 pm
  • Editorial Team
    Editorial Team added an answer It depends - if you're not creating anything visual (resp.… May 14, 2026 at 7:04 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.