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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:04:30+00:00 2026-05-31T03:04:30+00:00

I am usually pretty good to write simple regular expressions, but this time I

  • 0

I am usually pretty good to write simple regular expressions, but this time I cannot figure this out.

I need a regular expression that catches all the possible options:

<?php echo [^$]
<?php print [^$]
<? echo [^$]
<? print [^$]
<?echo [^$]
<?print [^$]
<?= [^$]
<?=[^$]

the [^$] stands for “non a $ character”

In other words I want to catch all the times that a print is done not using a variable.

I came up with something like this:

preg_match('/<\?[\s*|=|php]?\s*[echo\s|print\s]?\s*[^\$]/i',$content);

it doesn’t work, can’t figure out what would be the way to write 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-31T03:04:31+00:00Added an answer on May 31, 2026 at 3:04 am

    This is because regular expressions in the short form are line noise. No one should have to try to program them, and especially no one should have to try to read them.

    Try using the extended flag /x so you can use white space and add comments, both for others and for your future self.

    This could be improved by someone better at regular expressions, but it gives you an example of how to start:

    /
    <\?                 # bracket and question mark
    \s*                 # 0 to any white space
    (php|echo|print|=)  # php or echo or print or equal sign
    \s*                 # optional white space
    (echo|print)*       # optional echo or print
    \s*                 # optional white space
    (\{|\[)             # curly brace or square bracket
    \^                  # caret
    \$                  # $
    ]                   # square bracket
    /gx
    

    Also, an online tool can help you build it up and see the results step by step:

    http://gskinner.com/RegExr/

    You can see a more detailed example of how to do this in php at the nettuts+ article on Advanced Regular Expressions Tips and Techniques.

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

Sidebar

Related Questions

Okay, I need help. I'm usually pretty good at SQL queries but this one
Usually i am pretty good at working my way round as3 but this one
The web-site in question usually performs pretty good, but over time it becomes slower
I'll try to be quick, I'm still pretty new but I can usually figure
Pretty simple question: When i have a persistable object, it usually has a property
Usually when I need to fork in C, I do something like this: pid_t
How is this situation usually dealt with. For example, an object may need to
Usually I feel pretty confident with SQL queries, however this one has me scratching
Usually when I plot in MATLAB , it always draws on the same figure.
I am using EXT-js for a project, usually everything is pretty straight forward with

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.