nprintf
v1.0.1
Published
Get a format number from the formatting template,like CLang's function 'printf'.
Downloads
1,753
Readme
nprintf
将一个数字格式化,转换方式和 c 语言的 printf 方法保持一致。
Format numbers like c printf.
How to use
npm install --save nprintf
import printf from 'nprintf';
console.log(printf('%.2f', 11)); // 11.00, type: string
console.log(printf('%.2f', 11.355)); // 11.36 type: number
Attention
注意格式化模板需要符合以下正则,否则将抛出错误。
just support format rule like this. /^%([#\-+0 ]*)?([1-9]\d*)?(?:\.(\d+))?([dfeEoxXi])(%)?$/
Questions & Bugs?
Welcome to report to us with issue if you meet any question or bug. Issue