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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:43:24+00:00 2026-05-28T01:43:24+00:00

I am trying to create a super simple JavaScript templating solution. I want to

  • 0

I am trying to create a super simple JavaScript templating solution. I want to use the JavaScript replace method to find all instances of curly braces in a template and replace them with their appropriate data.

For instance, if my template was: <p>My name is {{name}}. I am {{age}}.</p>

I would want the result: <p>My name is Olly. I am 19.</p>

Here’s my code so far: http://jsfiddle.net/2RkAG/

I’m trying to make it automatically replace each piece of data, so I don’t have to explicitly tell the JavaScript what to replace. However, this is where I am having problems.

  • 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-28T01:43:24+00:00Added an answer on May 28, 2026 at 1:43 am

    $1 only works if you pass a string directly. It does not work the way you have it, because person["$1"] is evaluated before the string is passed to .replace – and person["$1"] literally is undefined.

    You can pass a function instead: http://jsfiddle.net/2RkAG/1/. The function is called for each replacement and has arguments passed that are equivalent to e.g. $1.

    $result.html(template.replace(/{{(.*?)}}/g, function(a, b) {
        return person[b]; // a = complete match, b = first group
    }));
    

    You don’t need to escape the first {, either.

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

Sidebar

Related Questions

Trying to convert super(B, self).method() into a simple nice bubble() call. Did it ,
I'm trying to create a simple method to turn a name (first name, last
I'm trying to create super simple Perlin noise clouds in a fragment shader, using
I was trying to create a pseudo super struct to print array of structs.
I am trying create a delegate representation of constructor by emitting a Dynamic Method,
I'm trying to create a simple app, whose main task is to open the
I am trying to create a simple Icon+Text ListView but it does not work.
I was trying to create a very simple MySQL event and realized the action
I'm trying to create a simple username/password login screen. I have the layout done,
I've been trying to create a simple class that implements the ViewSwitcher.ViewFactory interface basing

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.