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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:05:15+00:00 2026-05-22T21:05:15+00:00

How can i be able to ensure that a selected date time value is

  • 0

How can i be able to ensure that a selected date time value is between a given time range.
i.e

2/2/2011 8:10:30 is invalid but
2/2/2011 8:30:00 is a valid date
  • 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-22T21:05:16+00:00Added an answer on May 22, 2026 at 9:05 pm

    Regular expressions match strings, not numbers or number ranges. Therefore you need to think about the textual representation of all valid times/dates and analyze them.

    A number between 5 and 11 would therefore be 1[01]|[5-9] etc.; this can get arbitrarily complex with dates, especially if you need to validate user input. Then your regex needs to know about leap years and all that – all of which is possible but nightmarish to maintain. So you really need to think about if it’s really a regex you want…

    For the range 8:30:00-13:00:00 you get (written here as a verbose regex):

    \b            # start of word
    (?:           # Either match...
     13:00:00     # 13:00:00
    |             # or
     (?:          # hours:
      1[012]      # 10-12
      |           # or
      0?9         # 9, optional leading 0
     )            # end of hours
     :            # colon
     [0-5][0-9]   # minutes: 00-59
     :            # colon
     [0-5][0-9]   # seconds
    |             # or
     0?8          # hour: (0)8
     :            # colon
     [3-5][0-9]   # minutes 30-59
     :            # colon
     [0-5][0-9]   # seconds
    )             # end of alternation.
    \b            # end of word
    

    See why this isn’t a good idea?

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

Sidebar

Related Questions

How can we ensure that certain applications are not able to access my data
I created a CustomButtonField in blackberry using that i can able to set our
I can't seem to be able to disable ViewState for controls that I add
How do you ensure that a User can only edit objects they've created? What's
I want to encrypt a filename but ensure that the encrypted filename doesn't contain
I need to be able to ensure that the Pphone is always connected to
I can able to post the tweet through my application using C# with twitterizer
The media player embedded code work only in IE.How I can do it able
Can a Java Applet able to print out text/html easily to standard printer driver(s)
Can anyone suggest a CMS able to offer the following features: Free/open source Support

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.