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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:31:05+00:00 2026-05-27T07:31:05+00:00

I want to create a regular expression for detecting the publication date for a

  • 0

I want to create a regular expression for detecting the publication date for a book in Amazon. I’m extracting the data for all items and I want to find a publication’s date. All of these has this structure:
Month day, year.

The month is only represented by 3 chars, and the day could have one or two numbers (e.g Dec 5, 2011 or Dec 22, 2011). The year always have 4 numbers.

How I can do a regex in JavaScript to find this?

Thanks in advance !!

  • 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-27T07:31:06+00:00Added an answer on May 27, 2026 at 7:31 am

    This:

    var myregexp = /([a-z]{3}) (\d{1,2}), (\d{4})/i;
    var match = myregexp.exec(subject);
    if (match != null) {
        result = match[1];
    }
    

    will get you going. match[1] hold months, match[2] days and match[3] years.

    I will omit explaining the regex. I leave it as an exercise to you. You should visit the infamous regex tutorial here.

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

Sidebar

Related Questions

I am trying to create a proper regular expression to find all anchors in
I want to create a regular expression for strings which uses special characters [
I'm learning regular expressions and want to help me to create a regular expression
I want to create a regular expression where only numbers are allowed with max
I want to create regular expression for password that has length of atleast 6
I want to create a regular expression that matches input text that starts with
I just want to create a regular expression out of any possible string. var
okay...im really puzzled with this. I want to create a regular asp.net webforms website
How can I create a regular expression to search strings with a given pattern?
I'm trying to create regular expression that filters from the following partial text: amd64

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.