s = 'hello %s, how are you doing' % (my_name)
That's how you do it in python. How can you do that in javascript/node.js?
That's how you do it in python. How can you do that in javascript/node.js? |
|||
|
If you want to have something similar, you could create a function:
Usage:
This is only a simple example and does not take into account different kinds of data types (like |
|||||
|
|
Do that
|
|||||
|
|
util.format does this. It will be part of v0.5.3 and can be used like this:
|
|||
|
|
|
Try sprintf in JS or you could use this gist |
|||
|
|
|
Maybe my little String extension works for you?
|
|||
|
|
|
If you are using node.js, console.log() takes format string as a first parameter:
|
|||||
|
|
bob.js framework does domething similar too:
|
||||
|
|
var s = 'hello ${my_name}, how are you doing';– Raynos Oct 17 '11 at 10:53