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 6139851
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:02:36+00:00 2026-05-23T18:02:36+00:00

I’m working on a regex that’s supposed to match month-day-year gregorian dates (in javascript),

  • 0

I’m working on a regex that’s supposed to match month-day-year gregorian dates (in javascript), and it works fine for January, March, May, July, August, October, and December (31-day months) dates, but for some reason which I haven’t been able to figure out, it will not match any date from any other month.

A little explanation of the code below: I’ve set it up to first match the month-day part of the date all at once, so it doesn’t match on February 31st, for example. So, I currently have it matching (((a 31-day month) THEN (a non-alphanumeric character, captured) THEN (a day from 1 through 31)) OR ((a 28-day month) THEN (a non-alphanumeric character, captured) THEN (a day from 1 through 29)) OR ((a 30-day month) THEN (a non-alphanumeric character, captured) THEN (a day from 1 through 30))) THEN (the previously captured character) THEN (a past or current year AD).

I’m sure the problem is simple, but I’m just not seeing it.

^
(?:
  (?:
    (?:0?[13578]|1[02])
    ([^\dA-Za-z])
    (?:0?[1-9]|1[0-9]|2[0-9]|3[01])
  )
  |
  (?:
    (?:0?2)
    ([^\dA-Za-z])
    (?:0?[1-9]|1[0-9]|2[0-9])
  )
  |
  (?:
    (?:0?[469]|11)
    ([^\dA-Za-z])
    (?:0?[1-9]|1[0-9]|2[0-9]|30)
  )
)
\1
(?:0{0,3}[1-9]|0{0,2}[1-9][0-9]|0?[1-9][0-9]{2}|1[0-9]{3}|200[0-9]|201[01])
$
  • 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-23T18:02:38+00:00Added an answer on May 23, 2026 at 6:02 pm

    You get this error because you’re using \1, which doesn’t match for the last 2 alternations. \1 refers to the first ([^\dA-Za-z]) – if it didn’t match, it cannot get to the year.

    A simple alternative is (?:\1|\2|\3).

    Another option is to add at the start of the pattern (?=\d+([^\dA-Za-z])), and use \1 on all places. For example:

    ^
    (?=\d+([^\dA-Za-z]))   # capture the separator as \1
    (?:
      (?:
        (?:0?[13578]|1[02])
        \1
        (?:0?[1-9]|1[0-9]|2[0-9]|3[01])
      )
      |
      (?:
        (?:0?2)
        \1
        (?:0?[1-9]|1[0-9]|2[0-9])
      )
      |
      (?:
        (?:0?[469]|11)
        \1
        (?:0?[1-9]|1[0-9]|2[0-9]|30)
      )
    )
    \1
    (?:0{0,3}[1-9]|0{0,2}[1-9][0-9]|0?[1-9][0-9]{2}|1[0-9]{3}|200[0-9]|201[01])
    $
    

    On a side note: yikes! try Datejs – an impressive open-source JavaScript date library.

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

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I used javascript for loading a picture on my website depending on which small
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I need a function that will clean a strings' special characters. I do NOT

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.