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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T04:00:33+00:00 2026-05-20T04:00:33+00:00

I have a textbox which accepts time (max of 5 chars) in the format

  • 0

I have a textbox which accepts time (max of 5 chars) in the format hh:mm or hhmm. Pls tell me a way I can just scan the string entered in the textbox, for special characters and alphabets? [If the string entered has these chars or alphabets, then an alert is displayed(‘Pls enter a valid time’)] I tried the str.match and str.indexOf methods but it doesn’t seem to help.

<script type='text/javascript'>
    function clocks(){

        var clk = document.getElementById('TIME').value;
        var ampm = document.getElementById('AMPM').value;
var iChars = "!@#$%^&*()+=-[]\\\';,./{}|\":<>?";

  for (var i = 0; i < 5; i++) {
    if (iChars.indexOf(clks.charAt(i)) != -1) {
    alert ("Pls enter a valid time");
    return false;
    }
  }



.....}

</script>
  • 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-20T04:00:33+00:00Added an answer on May 20, 2026 at 4:00 am

    How are you using string.match()? This should work:

    <script type='text/javascript'>
    function clocks(){
    
        var clk = document.getElementById('TIME').value;
        var ampm = document.getElementById('AMPM').value;
    
        if (clk.match(/[^0-9:]/)) {
            alert("Please enter a valid time");
        }
    
        // or, an even more precise regex
        if (!clk.match(/^\d+:\d+$/)) {
            alert("Please enter a valid time");
        }
    .....}
    
    </script>
    

    The first regex match should check for anything that is NOT a digit or the ‘:’ character, and raise an alert if it finds anything. The second one will match any string that starts with one or more digits, then a ‘:’ character, then one or more digits, then the end of the string (which is the format you’re trying to match).

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

Sidebar

Related Questions

I have a text box which accepts time(max of 5 characters only), and a
I have a text box which accepts time in the format HH:mm and entries
I have a textbox which accepts Minutes. This value will be stored in a
We have a textbox which accepts comma separated email address. The regular expression is
I have many TextBOX in asp.net which accepts the value from user and stores
I have one jsp which accepts avlue from textbox and passes it to another
I am creating intellisense as Java's intellisense at C#.I have TextBox which user can
I have a textbox on my AJAX form which contains date-time formatted string in
I have a TextBox which should only accept numbers (they can be simple int
I have a textbox which is extended by an Ajax Control Toolkit calendar. I

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.