Greasy Fork 还支持 简体中文。

string format

Format a string with '{0}','{1}'...

目前為 2022-10-28 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/453846/1110445/string%20format.js

  1. // ==UserScript==
  2. // @name string format
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Format a string with '{0}','{1}'...
  6. // @license MIT
  7. // @author 捈荼
  8. // ==/UserScript==
  9.  
  10. (function () {
  11. "use strict";
  12.  
  13. if (!String.prototype.format) {
  14. String.prototype.format = function () {
  15. var args = arguments;
  16. return this.replace(/{(\d+)}/g, (match, number) => {
  17. return typeof args[number] != 'undefined' ? args[number] : match;
  18. });
  19. };
  20. } else {
  21. throw 'String.prototype.format defined.';
  22. }
  23. })();