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

The Archive Base Latest Questions

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

ok I have two strings. (I use this for a language library system to

  • 0

ok I have two strings.

(I use this for a language library system to allow translators to provide translations with placeholders).

In the first string, there are two instances. note that it’s not always a single instance, some cases it will be none, one, two, or more.

This is a {[John Doe]} and this is {[Jane Doe]}

and then I have a string that is stored like this:

C’est {[1]} et c’est {[2]}

(translation)
This is a {[1]} and this is a {[2]}

so what I need to do is take the first string, replace everything between {[]} of the starting string and match each instance, i.e. first of first string with {[1]} of second string etc. keep in mind that the reason I am using {[1]} and {[2]} is because in some languages, terms may appear in a different order for gramatical accuracy, but are still terms that don’t need translation them selves (names).

so the question is. how do I do this? am thinking preg_split and then match index+1 of each with the second string. that part I can handle. the problem I am having is getting the right regex search going..

this is as close as I could get it..

preg_split('/[(\{\[).*(\]\})]/', $str, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);

that returns an array of everything before and after each instance of {[ and ]} when I am just trying to get the contents of inbetween the two..

EDIT: solution derived from NikiC’s answer.

function lang($str){
    $nwStr = $str;
    preg_match_all('(\{\[(.+?)\]\})', $str, $placeholders);
    foreach ($placeholders[0] as $mk => $match) {
        $pos = $mk+1;
        $nwStr = str_replace("$match","{[$pos]}",$nwStr);
    }
    $result = preg_replace_callback('(\{\[(\d+)\]\})', function ($matches) use ($placeholders) {
        $n = $matches[1]-1;
        return $placeholders[1][$n];
    }, $translation);
    return $result;

}

basically what i am doing here is first looping through to replace the matches with the placeholders so that I can match the proper placeholder text in my language files. (i.e. create the right label string out of the input string)

  • 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-30T03:31:11+00:00Added an answer on May 30, 2026 at 3:31 am

    First grab the placeholders from the string:

    preg_match_all('(\{\[(.+?)\]\})', $string, $matches);
    $placeholders = $matches[1];
    

    Now replace with a callback:

    $result = preg_replace_callback('(\{\[(\d+)\]\})', function ($matches) use ($placeholders) {
        $n = $matches[1] + 1;
        return $placeholders[$n];
    }, $translation);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two strings: the first's value is catdog and the second's is got.
Say I have two strings, String s1 = AbBaCca; String s2 = bac; I
Let's say I have two strings like this: XABY XBAY A simple regex that
I have two classes as follows: public class Info { [XmlAttribute] public string language;
I have two arrays, each containing strings. The first array is a list of
I have two strings and would like to display the difference between them. For
I have two strings <EM>is <i>love</i></EM>,<PARTITION /> and <EM>is <i>love</i>,<PARTITION /> I want a
I have two strings and I would like to mix the characters from each
I have two strings in a java program, which I want to mix in
I have two strings, one a key and one a value, which I would

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.