12

在 python 中,我可以执行以下操作:

name = "bob"

print("Hey, %s!" % name)

.format()JavaScript/NodeJS 中是否有类似的东西(或 Python 的)?

4

3 回答 3

13

You can use util.format, it's printf like function.

于 2013-08-21T17:10:26.717 回答
5

另一种选择是模板字符串

例如:

const name = "bob";
console.log(`Hey, ${name}!`);
于 2018-12-07T09:22:13.680 回答
1

我认为sprintf应该做你所要求的。

于 2012-05-28T17:35:47.923 回答