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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:55:44+00:00 2026-06-12T06:55:44+00:00

I am trying to create a RegEx to match a string with the following

  • 0

I am trying to create a RegEx to match a string with the following criterion

  • Length 8
  • First character must be a letter a-z or A-Z
  • The remaining 7 must be numeric 0-9

examples

  • a5554444
  • B9999999
  • c0999999

This is what I have so far

^[0-9]{8}$

What am I missing to check the first character? I tried

^[a-zA-Z][0-9]{8}$

but that’s not working.

  • 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-06-12T06:55:45+00:00Added an answer on June 12, 2026 at 6:55 am

    I think this is what you want:

    ^[a-zA-Z][0-9]{7}$
    

    the {…} metacharacter only matches the most previous pattern which in your case is [0-9]. the regex interpretation is as follows:

    1. start at the beginning of the string (^)
    2. match any character a-z or A-Z ([a-zA-Z]) in the first spot only one time
    3. match any character 0-9 starting at the second spot ([0-9])
    4. the preceding pattern mentioned in step 3 of [0-9] must exist exactly 7 times ({7})

    When you put {8} as per your original question, you’ll assume a string length total of 9: the first character being alphabetic case insensitive and the remaining 8 characters being numeric.

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

Sidebar

Related Questions

I'm trying to create a regex expression to match any string that has exactly
I am trying to create a regex that will match the first 3 characters
I am trying to create a regex for the following UA string: Mozilla/5.0 (BlackBerry;
I'm trying to create a regex pattern to match the lines in the following
I'm trying to create a regex that will match only when the string has
I'm trying to create a regex that will match the following: http://myurl.com/en/something I need
I'm trying to create a regex to tokenize a string. An example of the
I'm trying to create a regex that matches the inverse of a certain string
I'm trying to create a regex containing character set which can contain a period
I’m trying to create partial RegEx match in JS. What I want to achieve

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.