1. ホーム
  2. javascript

[解決済み] JavaScriptでC#のString.Format()に相当するものはありますか?重複

2023-06-23 22:42:13

質問

C#では、非常に強力な String.Format() のような要素を置き換えるために {0} といった要素をパラメータで置き換えるためのものです。JavaScriptにも同等のものがあるのでしょうか?

どのように解決するのですか?

試しに javascriptのsprintf()を使ってみてください。 .

または

// First, checks if it isn't implemented yet.
if (!String.prototype.format) {
  String.prototype.format = function() {
    var args = arguments;
    return this.replace(/{(\d+)}/g, function(match, number) { 
      return typeof args[number] != 'undefined'
        ? args[number]
        : match
      ;
    });
  };
}

"{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET")

どちらの回答も printf/string.formatに相当するJavaScriptの機能