Is there a better way to do this? I'm using the underscore js lib here, which is where the _. comes from. I'm used to this sort of procedure to format strings in python and i'd like something simple for javascript without doing + + + + all the time. This works, but it feels like i reinvented the wheel.


function foo (iterable, string) {
  var s = iterable.shift();
  string = string.replace("%s",s);
  return _.isEmpty(iterable) ? string : foo(iterable,string);
};

foo(['sam','green','ham'],"%s likes %s eggs and %s.");
"sam likes green eggs and ham."
link|improve this question

80% accept rate
thanks for the input. both seem really cool, i'll have to check them out. – Sneaky Wombat Apr 10 '11 at 4:14
feedback

2 Answers

up vote 1 down vote accepted

try out the sprintf lib, specifically vsprintf.

vsprintf('The first 4 letters of the english alphabet are: %s, %s, %s and %s', ['a', 'b', 'c', 'd']);
link|improve this answer
feedback

There's a jQuery plugin that attempts to replicate this Python behaviour: http://plugins.jquery.com/project/py-format

It's a little more extensive than your solution, but yours covers pretty much all of the use cases, so its up to you whether you need anything more involved. If you don't want to use jQuery, the source code is available here: http://plugins.jquery.com/files/jquery.format.js_1.txt and it should be pretty straightforward to replicate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.