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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:36:13+00:00 2026-05-28T04:36:13+00:00

I have a text that contains usernames prepended with @ symbol. Example: One day

  • 0

I have a text that contains usernames prepended with @ symbol. Example:

One day @john decided to ask @jane out.

I want to replace all occurances of the usernames with a link, for the sake of an example lets say I would want to replace @user with link-user, Example:

One day link-john decided to ask link-jane out.

This can be done with following command:

preg_replace('`@([a-zA-Z0-9]{2,15})`', 'link-$1', $text);

Additionally I would like to obtain an array of all the matches like preg_match would have done, but I am unable to, because preg_replace does not seem to provide that array. What is the most efficient way to accomplish this? I feel like doing preg_match and later preg_replace would be a waste of resources, would it not?

If you feel there is a better way to accomplish this, I would appreciate your feedback.

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-05-28T04:36:13+00:00Added an answer on May 28, 2026 at 4:36 am

    You can use preg_replace_callback:

    <pre>
    <?php
    
    $arr = array();
    
    function linker( $matches ) {
        global $arr;
        $arr[] = $matches[1];
        return "link-{$matches[1]}";
    }
    
    $text = "One day @john decided to ask @jane out.";
    $result = preg_replace_callback('`@([a-zA-Z0-9]{2,15})`', "linker", $text);
    
    echo $result . "\n";    
    print_r( $arr );
    ?>
    </pre>
    

    Result:

    One day link-john decided to ask link-jane out.
    Array
    (
        [0] => john
        [1] => jane
    )
    

    If you are using PHP 5.3, you can make this much cleaner with anonymous functions.

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

Sidebar

Related Questions

I have a text file that contains a long list of entries (one on
I have Text file that contains data separated with a comma , . How
I have a text file that contains localized language strings that is currently encoded
I have a text file that contains a list of filenames, minus the extension,
I have a text document that contains a list of numbers and I want
I have a series of text that contains mixed numbers (ie: a whole part
I have a string of text that contains html, and I need to extract
I have an asp.net text form that contains numerous decimal fields that are optional.
I have field X that contains text with spaces in the end of the
If I have a variable that contains text information (say taken from a textarea),

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.