次のように機能する python .format() 関数を模倣する JavaScript 関数が欲しい
.format(*args, **kwargs)
前の質問は、'.format(*args) の可能な (完全ではない) 解決策を提供します。
printf/string.format に相当する JavaScript
できるようになりたい
"hello {} and {}".format("you", "bob"
==> hello you and bob
"hello {0} and {1}".format("you", "bob")
==> hello you and bob
"hello {0} and {1} and {a}".format("you", "bob",a="mary")
==> hello you and bob and mary
"hello {0} and {1} and {a} and {2}".format("you", "bob","jill",a="mary")
==> hello you and bob and mary and jill
それは難しい注文だと思いますが、キーワード引数も含む完全な (または少なくとも部分的な) ソリューションがどこかにあるかもしれません。
ああ、AJAX と JQuery にはおそらくこのためのメソッドがあると聞きましたが、オーバーヘッドなしで実行できるようにしたいと考えています。
特に、Google ドキュメントのスクリプトで使用できるようにしたいと考えています。
ありがとう