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

The Archive Base Latest Questions

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

I have to validate a string which can contain numbers from 1 to 7,

  • 0

I have to validate a string which can contain numbers from 1 to 7, and maximum length allowed is 7.

([1-7]){0,7}

Condition: No numbers should be repeated in the string.

eg:

12345  true;
11345  false  (1 is repeated) ;
98014  false  (0,8,9 are invalid); 
  • 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-25T01:44:43+00:00Added an answer on May 25, 2026 at 1:44 am

    This can be done in a single regex:

    ^(?!.*(.).*\1)[1-7]{0,7}$
    

    The lookahead assertion checks that all characters in the string are unique, and the actual regex only allows 0-7 digits between 1 and 7.

    In Java:

    boolean foundMatch = subjectString.matches("^(?!.*(.).*\\1)[1-7]{0,7}$");
    

    Of course you can make the lookahead fail faster by replacing each . with [1-7], but for clarity’s sake I’ve chosen not to. (And you can drop the ^ and $ anchors if you use the .matches() method since they are implicit in that case).

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

Sidebar

Related Questions

We have a Perl program to validate XML which is invoked from a Java
I need to validate a string, which might contain alphanumeric as well as special
i want a regular expression to validate string to have only text,operators and these
I have no clue how to validate this string. I am simply supplying an
In my model I have: validate :my_custom_validation def my_custom_validation errors.add_to_base(error message) if condition.exists? end
I have a method which parses a string in to a date, but i
I need to validate a textBox entry which contains time. Time should be in
I have a web page on which users can upload text files (but a
I have a function isNotEmpty which returns true if the string is not empty
I have a XLSX file which contain 2 columns 1 being a formatted date,

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.