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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T21:18:15+00:00 2026-06-09T21:18:15+00:00

I know one can use OR operator on regular expressions: $str = Here is

  • 0

I know one can use OR operator on regular expressions:

$str = "Here is a strawhat, some cranberry, and a strawberry!";
while($str =~ /(\bstraw\B|\Bberry\b)/g) {
  print "Thanks for the $& !\n";
}

Is there a simple and short way other than a while loop to AND them instead of OR, so that the only match is “strawberry”?

In other words, I need to check if there exists a substring in a string that matches all of the given regular expressions.

  • 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-09T21:18:17+00:00Added an answer on June 9, 2026 at 9:18 pm

    If I’m understanding your question correctly, you can use lookahead assertions for this:

    if ($str =~ /^(?=.*?regexp-1)(?=.*?regexp-2)...(?=.*?regexp-n)/s) {
        # $str matches regexp-1, regexp-2, ..., regexp-n.
    }
    

    There are a couple of assumptions built into this construction:

    • All of the subexpressions are well-formed.
    • None of the subexpressions use the . metacharacter to mean “any character except a newline”. You could turn this behavior back on with (?-s:...) as necessary.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Xcode 4.2, I know that one can use the storyboard segue to have
I know one can add event listener for window.error. However when working with Iframes,
I know that one can define an 'expected' exception in JUnit, doing: @Test(expect=MyException.class) public
I like to know how one can integrate the Qt libraries into an Enterprise
Before somebody points me to that question, I know that one can't parse html
I wanted to know if any one can explain the control flow of the
does any one know of any good countdown timer's for flash which i can
From code how can we know which interfaces one class implements? Example: interface IDrink
I know that ScrollView can have only one Child but in my case I
This one goes round and round I know but I can't seem to find

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.