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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:23:31+00:00 2026-05-31T15:23:31+00:00

it might be very easy but i could not do it.. given a string:

  • 0

it might be very easy but i could not do it..

given a string:

$str="i have an apple[1], and another one [2], and another[3]";

i want to replace [1], [2] .. with <tag id=1> <tag id=2>

i tried $str2 = preg_replace('/[([1-9][0-9]*)]/', '<tag id=1>', $str);

but can not insert a variable to do

$str2 = preg_replace('/[([1-9][0-9]*)]/', '<tag id=$var>', $str);

the regex i am using is also a problem, it works for some cases but does not for some 🙁

any help is deeply appreciated..

EDIT:
as @m42 and @scibuff pointed out, valid regex would be: /\[([1-9][0-9]*)\]/

but how to increment for each replacement?

EDIT 2:
i misunderstood M42’s answer, thanks.

But what if i have another string;

str2="i have an egg [4], and another egg [5]";

how can i continue the increment started by first preg_replace?

i mean, desired result is:

i have an apple <tag id=1>,... i have an egg [4]..

EDIT 3: SOLVED by M42
-in fact second part of the question is meaningless, preg_replace will increment continously.. thanks all!!

  • 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-31T15:23:32+00:00Added an answer on May 31, 2026 at 3:23 pm

    How about:

    $str2 = preg_replace('/\[([1-9][0-9]*)\]/', "<tag id=$1>", $str);
    

    Here is a test:

    $arr = array(
        "I have an apple[1], and another one [2], and another[3]",
        "i have an egg [4], and another egg [5]",
    );
    foreach ($arr as $str) {
        echo "before: $str\n";
        $str = preg_replace('/\[([1-9]\d*)\]/', "<tag id=$1>", $str);
        echo "after : $str\n";
    }
    

    output:

    before: I have an apple[1], and another one [2], and another[3]
    after : I have an apple<tag id=1>, and another one <tag id=2>, and another<tag id=3>
    before: i have an egg [4], and another egg [5]
    after : i have an egg <tag id=4>, and another egg <tag id=5>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this might be very easy to some,, I have a simple string
This might be a very easy one for many of you - but I'm
I know, this might be a very basic question but I am not 100%
When should you NOT use a singleton class although it might be very tempting
This might be a very newbie question, but I didn't find anything satisfying I
Forgive what might seem to some to be a very simple question, but I
Both ideas sound very similar to me, but there might be subtle differences or
Well, that must be an easy one but I can't find the solution anywhere.
I have some algorithms to do that are very similar in very aspects but
I think this might be a tricky one, but if anyone can solve it

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.