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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:59:34+00:00 2026-05-30T23:59:34+00:00

if(preg_match(/(.*(<code>).*(<\/code>).*)*/, $string)) I was trying many hours already, but I can’t make it work.

  • 0
if(preg_match("/(.*(<code>).*(<\/code>).*)*/", $string))

I was trying many hours already, but I can’t make it work. I want that if user formatted text correctly like:

(any_string*<code>any_string*</code>any_string*)*

Only then I would format text with * meaning empty string or many times. What’s wrong with my expression?

edit: I want to match lalala text <code>dlalala lala code</code> lalalal. If it’s lala <code> lalala or lalal </code> <code> lalala <code>alala then we don’t want to match it.

  • 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-30T23:59:36+00:00Added an answer on May 30, 2026 at 11:59 pm

    This works with the 2 given test cases:

    $arr = array('lalala text <code>dlalala lala code</code> lalalal.',
                 'lala <code> lalala or lalal </code> <code> lalala <code>alala');
    foreach ($arr as $str) {
        echo "$str\n";
        if (preg_match('#^(?<!<code>).*<code>.*?</code>(?!.*<code>)#', $str)) {
            echo "===> Match\n";
        } else {
            echo "===> Not match\n";
        }
    }
    

    output:

    lalala text <code>dlalala lala code</code> lalalal.
    ===> Match
    lala <code> lalala or lalal </code> <code> lalala <code>alala
    ===> Not match
    

    Some explanation about the regex:

    #           : regex delimiter
    ^           : begining of string
      (?<!      : start negative lookbehind
        <code>  : literally <code>
      )         : end of lookbehind
      .*        : any char any number of time
      <code>    : literally <code>
      .*?       : any char any number of time not greedy
      </code>   : literally </code>
      (?!       : start negative lookahead
        .*      : any char any number of time
        <code>  : literally <code>
      )         : end of lookahead
    #           : regex delimiter
    

    You can find some usefull informations about lookaround here

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

Sidebar

Related Questions

I'm trying to use preg_match to extract info from href=domain.com/subdir/?key=value The info I want
I have the following code in PHP: if (preg_match('@^[a-z0-9/._-]+$@i', $script) && !preg_match('@([.][.])|([.]/)|(//)@', $script)) I'm
if I have a string like 'foo(bar)', with the following code i can almost
I have created a piece of code that checks files for a user-submitted string
i am trying this code for make a validation for a value. (regex from
I'm using symfony 1.4 doctrine. I have a code that can validate phone numbers
I have made this line of code to make the words, that is searced
<?php $username = @#*(#(*#($&*#$; if (preg_match(/^[0-9a-z-A-Z-_@ !]*/, $username)) { echo true; } else {
preg_match() gives one match. preg_match_all() returns all matches. preg_split() returns all splits. How can
if (preg_match('(\p{Nd}{4}/\p{Nd}{2}/\p{Nd}{2}/\p{L}+)', '2010/02/14/this-is-something')) { // do stuff } The above code works. However this

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.