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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:04:44+00:00 2026-05-25T00:04:44+00:00

I am trying to check that what the user inputs begins with two letters,

  • 0

I am trying to check that what the user inputs begins with two letters, followed by either 6, 8 or 10 numbers. Checking string length should be ok but is there a neater way to check that the first two characters are letters and that the subsequent 6, 8 or 10 characters are numbers than converting each character to unicode and then checking that way?

  • 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-25T00:04:44+00:00Added an answer on May 25, 2026 at 12:04 am

    You can use regex:

    ^[a-zA-Z]{2}(?:\d{6}|\d{8}|\d{10})$
    

    This will pass only if the first 2 are alphas and next 6 or 8 or 10 are numbers.

    JS:

    function isValid(txt) {
        return /^[a-zA-Z]{2}(?:\d{6}|\d{8}|\d{10})$/.test(txt);
    }
    
    alert(isValid("ab123456"));   // pass
    alert(isValid("ab1234567"));  // fail, contains 7 digits
    alert(isValid("abc123456"));  // fail, starts with 3 chars 
    alert(isValid("ab12345678")); // pass
    

    Here’s complete JS example: http://jsfiddle.net/mrchief/sRLrW/

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

Sidebar

Related Questions

I am trying to check that my function returns Some(x) testedFunc() |> should be
I'm trying to write a program that reads 2 numbers from the user and
I'm trying to check whether an input contains a URL either when a user
So basically I am trying to check the arguments that are passed into the
I'm trying to develop a bit of VBA that will check the date modified
I'm trying to make a PHP script that will check the HTTP status of
I am trying to make a bookmarklet that when clicked will check the URL
I'm trying to create a check on a few columns in my database that
I'm trying to use jQuery to check for the existence of an <option> that
I am trying to check whether a list contains a value, which is user

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.