首頁  >  文章  >  web前端  >  JavaScript中實作sprintf、printf函數_javascript技巧

JavaScript中實作sprintf、printf函數_javascript技巧

WBOY
WBOY原創
2016-05-16 16:18:023200瀏覽

在 JavaScript 下實作大多數語言中都有的 sprintf / printf 函數功能。

http://www.webtoolkit.info/javascript-sprintf.html : 比較完整的模擬sprintf函數功能。可用的格式化通配符:
1.%% - 回傳百分號本身
2.%b - 二進位數字
3.%c - ASCII對應的字元
4.%d - 整數
5.%f - 浮點數
6.%o - 八進位數字
7.%s - 字串
8.%x - 16進位數字 (小寫字母形式)
9.%X - 16進位數字 (大寫字母形式)

在 % 號和通配字元之間可用的選項包括 (例如 %.2f):

1.       (強制顯示數字前面且 - 符號為正負數標記。缺省情況下只有負數才顯示 - 符號)
2.-      (變項左對齊)
3.0      (使用0作為右對齊的填充字元)
4.[0-9]  (設定變數的最小寬度)
5..[0-9] (設定浮點數精確度或字串的長度)

複製程式碼 程式碼如下:

/**
*
* JavaScript sprintf
http://www.webtoolkit.info/
*
*
**/

sprintfWrapper = {

  init : 函數 () {

    if (typeof argument == "undefined") { return null; }
    if (arguments.length     if (typeof argument[0] != "string") { return null; } } }
    if (typeof RegExp == "未定義") { return null; } }

    var string = argument[0];
    var exp = new RegExp(/(%([%]|(-)?( |x20)?(0)?(d )?(.(d)?)?([bcdfosxX])))/g);
    var matches = new Array();
    var strings = new Array();
    var convCount = 0;
    var stringPosStart = 0;
    var stringPosEnd = 0;
    var matchPosEnd = 0;
    var newString = '';
    var match = null;

    while (match = exp.exec(string)) {
      if (match[9]) { 轉換計數 = 1; }

      stringPosStart = matchPosEnd;
      stringPosEnd = exp.lastIndex - match[0].length;
      strings[strings.length] = string.substring(stringPosStart, stringPosEnd);

      matchPosEnd = exp.lastIndex;
      匹配[匹配.長度] = {
        匹配:匹配[0],
        左:配對[3]?         符號:匹配[4] || '',
        墊:匹配[5] || ' ',
        分鐘:匹配[6] || 0,
        精度:匹配[8],
        代碼:匹配[9] || '%',
        負數:parseInt(arguments[convCount])         參數:字串(參數[convCount])
      };
    }
    strings[strings.length] = string.substring(matchPosEnd);

    if (matches.length == 0) { return string; }

    if ((arguments.length - 1)

    var code = null;

    var match = null;
    var i = null;

    for (i=0; i

      if (matches[i].code == '%') { replacement = '%' }
      else if (matches[i].code == 'b') {
        matches[i].argument = String(Math.abs(parseInt(matches[i].argument)).toString(2));
        替換 = sprintfWrapper.convert(matches[i], true);
      }
      else if (matches[i].code == 'c') {
        matches[i].argument = String(String.fromCharCode(parseInt(Math.abs(parseInt(matches[i].argument)))));
        替換 = sprintfWrapper.convert(matches[i], true);
      }
      else if (matches[i].code == 'd') {
        matches[i].argument = String(Math.abs(parseInt(matches[i].argument)));
        替換 = sprintfWrapper.convert(matches[i]);
      }
      else if (matches[i].code == 'f') {
        matches[i].argument = String(Math.abs(parseFloat(matches[i].argument)).toFixed(matches[i]. precision ? matches[i]. precision : 6));
        替換 = sprintfWrapper.convert(matches[i]);
      }
      else if (matches[i].code == 'o') {
        matches[i].argument = String(Math.abs(parseInt(matches[i].argument)).toString(8));
        替換 = sprintfWrapper.convert(matches[i]);
      }
      else if (matches[i].code == 's') {
        matches[i].argument = matches[i].argument.substring(0, matches[i]. precision ? matches[i]. precision : matches[i].argument.length)
        替換 = sprintfWrapper.convert(matches[i], true);
      }
      else if (matches[i].code == 'x') {
        matches[i].argument = String(Math.abs(parseInt(matches[i].argument)).toString(16));
        替換 = sprintfWrapper.convert(matches[i]);
      }
      else if (matches[i].code == 'X') {
        matches[i].argument = String(Math.abs(parseInt(matches[i].argument)).toString(16));
        替換 = sprintfWrapper.convert(matches[i]).toUpperCase();
      }
      否則{
        替換 = matches[i].match;
      }

      newString = strings[i];
      newString =替換;

    }
    newString = 字串[i];

    return newString;

  },

  轉換:函數(符合、無符號){
    如果(無符號){
      match.sign = '';
    }其他{
      匹配.符號 = 匹配.負數 ? '-' : 匹配.sign;
    }
    var l = match.min - match.argument.length 1 - match.sign.length;
    var pad = new Array(l     if (!match.left) {
      if (match.pad == "0" || nosign) {
        return match.sign pad match.argument;
      }其他{
        return pad match.sign match.argument;
      }
    }其他{
      if (match.pad == "0" || nosign) {
        return match.sign match.argument pad.replace(/0/g, ' ');
      }其他{
        return match.sign match.argument pad;
      }
    }
  }
}

sprintf = sprintfWrapper.init;

如果只是想進行簡單的位置變數內容替換而不需要額外的格式化處理的話,可以用比較簡單的 YUI tools 中所提供的printf:

複製程式碼 程式碼如下:

YAHOO.Tools.printf = function() {
  var num = arguments.length;
  var oStr = arguments[0];
  for (var i = 1; i     var pattern = "\{" (i-1) "\}";
    var re = new RegExp(pattern, "g");
    oStr = oStr.replace(re, arguments[i]);
  }
  return oStr;
}

使用的時候像 YAHOO.Tools.printf("顯示字串 {0} , {1}。", "1", "2"); 這樣用{?}來做匹配。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn