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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:20:28+00:00 2026-05-31T13:20:28+00:00

I am trying to make sure that the format people input is exactly this

  • 0

I am trying to make sure that the format people input is exactly this :

.match(/\d{1,2}:\d\d\s((AM)|(PM))/)

Meaning that a user could write :

12:30 AM
2:30 PM

But not :

1:2 A
1:30
PM

It needs to be first two digits, followed by a colon, than two more digits, a space, and either AM or PM. But my regex expression isn’t that. What am I missing?

  • 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-31T13:20:29+00:00Added an answer on May 31, 2026 at 1:20 pm

    What exactly seems to be the problem?

    > "1:2 A".match(/\d{1,2}:\d\d\s((AM)|(PM))/);
    null
    
    >"12:30 AM".match(/\d{1,2}:\d\d\s((AM)|(PM))/);
    ["12:30 AM", "AM", "AM", undefined]
    

    However:

    1. You need to ground your expression to the start (^) and end ($) of the string otherwise;

      > "foo 12:30 AM foo".match(/\d{1,2}:\d\d\s((AM)|(PM))/);
      ["12:30 AM", "AM", "AM", undefined]
      
    2. Look at RegExp.test() instead, which returns a simpler true/false rather than an array.

      > /^\d{1,2}:\d\d\s((AM)|(PM))$/.test("12:30 AM");
      true
      

    A simpler expression which does the same thing could be /^\d{1,2}:\d{2} [AP]M$/

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

Sidebar

Related Questions

I'm trying to make sure that my Managed to Unmanaged calls are optimized. Is
I am trying to download a CSV file using HttpResponse to make sure that
I have been trying to test my application to make sure that all the
I am trying to create a validation that checks to make sure a domain/url
I'm trying to write a quick little macro that asks the user for an
I have an matrix in this format that I am trying to validate and
I'm trying to make sure some data is auto-deleted when there's no more references
I'm trying to make sure my web application is always centered on the screen
Good Day All we are trying to do is inside a trigger make sure
Trying to make a make generic select control that I can dynamically add elements

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.