Skip to content
本章目录

【数值操作 —— formatChineseRMB】

功能: 数字金额转换为大写人民币汉字。

1-函数引入

js
  import { formatChineseRMB } from 'tj-jstools'
1

2-函数声明

ts
declare function formatChineseRMB(money: number): string;
1

3-使用示例

js
formatChineseRMB(555) // 伍佰伍拾伍元整
formatChineseRMB(555.00) // 伍佰伍拾伍元整
formatChineseRMB(555.25) // 伍佰伍拾伍元贰角伍分
formatChineseRMB(+555.25) // 伍佰伍拾伍元贰角伍分
formatChineseRMB(-555.2536) // 伍佰伍拾伍元贰角伍分叁毫陆厘
formatChineseRMB(545555.2536665) // 伍拾肆万伍仟伍佰伍拾伍元贰角伍分叁毫陆厘
1
2
3
4
5
6
  • 对于数值小于 0 时,取绝对值
  • 对于小数超过4位数时,只保留4位小数进行转换
  • 最大数值不能超过999999999999999.9999

Released under the MIT License.