日期:2014-05-16 浏览次数:20398 次
本文是对nodejs0.8.9版本的api开发手册解读.nodejs网址
工具类(util)
stability:5 - locked
这写方法都在util模块中,使用require('util')访问他们.
util.format(format,[...])
把第一个参数用类似printf的功能格式化后,返回格式化后的字符串.
第一个参数是一个字符串,包含0个或者更多个占位符.每个占位符都会被相应的参数转换后的值替换.支持的占位符有:
%s
- String 字符串.%d
- Number (both integer and float). 数字 包括整形和浮点型%j
- JSON.json格式%
- single percent sign ('%'
). This
does not consume an argument.单个百分号,这占一个占位符空间.util.format('%s:%s', 'foo'); // 'foo:%s'
如果参数比占位符多,额外的参数将会被使用util.inspect()转换成字符串.并且用空格隔开.util.format('%s:%s', 'foo', 'bar', 'baz'); // 'foo:bar baz'
如果第一个参数不是一个格式化字符串(意思是不是占位符),那么util.format()将会返回一个用空格分开的字符串.每个参数都会被util.inspect()转换成字符串.util.format(1, 2, 3); // '1 2 3'
require('util').debug('message on stderr');