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

  • Home
  • SEARCH
  • 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 9170653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:03:13+00:00 2026-06-17T16:03:13+00:00

Regex to match string containing two names in any order has a good explanation

  • 0

Regex to match string containing two names in any order has a good explanation of how to match strings in any order. So using

(?=.*\bjack\b)(?=.*\bjames\b)

Will match

jack,james

and

james,jack

However, it will also match

jack,james,jill

How can I construct a regex to match string in any order, but only match those string (i.e. a regex that will match jack and james in any order, but not match a string that contains anything other than jack and james)

  • 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-17T16:03:14+00:00Added an answer on June 17, 2026 at 4:03 pm

    It depends on what exactly you mean by “anything other than jack and james”, but the general idea would be to match some number of \b(jack|james)\b, surrounded by other characters:

    ^\W*(\b(jack|james)\b\W*)*$
    

    You can specify the exact number, or range, of matches instead of using *. For example, to match exactly 2 or 3 such words:

    ^\W*(\b(jack|james)\b\W*){2,3}$
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for the regex to match any string that has an opened or
Can someone help me with a regex to match on any string that has
I am using this regex to match email addresses in a string. Everything works
I need a regular expression that will match any string containing at most 2
I'm trying to match a string 123,1234 using regex.h. Following pattern does the job:
How could I write a regex that will match a string containing only question
I wrote this regex with the idea that it will match any string in
I need to match a string holiding html using a regex to pull out
I'm trying to use regex to match a string that starts with a <p>
I would like to regex match a sequence of bytes when the string '02

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.