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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:52:22+00:00 2026-05-23T00:52:22+00:00

i need to validate a text box for this format of data input –

  • 0

i need to validate a text box for this format of data input –

“TeSt12-12TeSt,12Test-Ab12,….”

which basically is a series of key-value (key hyphen value) split using a comma (,)

Readlike

anyAlphaNumeric followed by hyphen anyAlphaNumeric then “optional from here” comma and anyAlphaNumeric followed by hyphen anyAlphaNumeric then comma and anyAlphaNumeric followed by hyphen anyAlphaNumeric…

Here 1s can be A-Z, a-z, 0-9
Examples –
11-11 is valid
111-111, is invalid (comma should be followed by another key-value set)
1-1,1-1 is valid
1- is invalid (value is missing after hyphen)
1-1,111-111,11-11111,111-111111 is valid

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

    All right:

    ^        # Start of string
    \w+      # Match any alnum,
    -        # hyphen,
    \w+      # any alnum.
    (?:      # Try to match...
     ,       # comma,
     \w+     # any alnum,
     -       # hyphen,
     \w+     # any alnum
    )*       # zero or more times.
    $        # Match end of string.
    

    or (as a non-verbose regex):

    ^\w+-\w+(?:,\w+-\w+)*$
    

    Be aware that \w will also match the underscore (and, in a .NET environment, may also match Unicode letters and digits. If you don’t want that, use [A-Za-z0-9] instead of \w.

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

Sidebar

Related Questions

I need validate the dynamically appended input text box for the below code $(#btnadd).click(function()
I have a text field which I need to validate using a regex. My
I need to validate certain names in a text box. While validating it should
I need to validate this simple pick list: <select name=<%= key %>> <option value=ETC
I need to validate the user input of a JSpinner , and if invalid,
I need to validate two user input fields against each other in seam. Field1
I am using jquery validation plugin to validate a registration form. Each text input
I had been created text box custom validation control and I'm using this in
I need to validate some textbox input. I want to use a regex. The
I need to validate various ASP.NET controls, but instead of displaying the standard text/asterisk/image

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.