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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:02:42+00:00 2026-06-08T08:02:42+00:00

I know this may be a common question but I can’t find the exact

  • 0

I know this may be a common question but I can’t find the exact answer I want.

I have the following string.

#|First Name|#
Random Text
#|Last Name|#

What I would like to do is have all the values that are in between the #| & |# and replace the whole string with a value. This must be in an array so I can loop through them all.

So as an example I have:

#|First Name|#

After processing I would like it to be:

John

So the main logic would be to use the First Name value to print out a value from a database.

Can someone help me out here.

This is code I’ve tried:

preg_match('/#|(.*)|#/i', $html, $ret);

Thanks

  • 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-08T08:02:45+00:00Added an answer on June 8, 2026 at 8:02 am

    You’ll need preg_replace_callback() for this, in addition to making your regex non-greedy and escaping the vertical bar:

    $replacements = array( 'John', 'Smith');
    $index = 0;
    $output = preg_replace_callback('/#\|(.*?)\|#/i', function( $match) use ($replacements, &$index) {
        return $replacements[$index++];    
    }, $input);
    

    This will output:

    string(24) "John
    Random Text
    Smith"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This may have been asked already, but I can't find it, so here goes.
I know this may seem like a common question on SO but I could
I know this question may be a little bit common and over asked but
I know this may be a dumb question, but my background is more in
I know this may seem like a math question but i just saw this
I know this question may well be the silliest question you've heard today, but
I know this question may be a duplicate of some other ones, but I
I know that this may be an amateur question but for some reason I
Now this may seem like a silly question, but I need to know how
I know this may be obvious, but i didn't set the background to any

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.