gpt4 book ai didi

javascript - Javascript 中是否有类似于 Python 中的 .format() 的函数?

转载 作者:行者123 更新时间:2023-12-01 03:07:00 25 4
gpt4 key购买 nike

有没有办法在 JavaScript 中从 Python 编写 ('{0} {1}'.format(1, 2)) ??

最佳答案

我使用以下内容:

String.prototype.format = function () {
var args = [].slice.call(arguments);
return this.replace(/(\{\d+\})/g, function (a) {
return args[+(a.substr(1, a.length - 2)) || 0];
});
};

像这样使用

var testString = 'some string {0}';
testString.format('formatting'); // result = 'some string formatting'

关于javascript - Javascript 中是否有类似于 Python 中的 .format() 的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46108796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com