问题背景
要求实现一个金额转换的工具类,输入一个数字金额,返回它的大写金额。
例如:
输入:105
输出:壹佰零伍
输入:6543
输出:陆仟伍佰肆拾叁
代码实现
/**
* @description 数字金额转大写的金额的公共方法
* @author Joyce Lee
* @date 2024-06-17
* @param num 105
* @returns {string} 壹佰零伍
*/
export const convertToChineseCurrency = (num) => {
const digitToChinese = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌"
标签:const,金额,num,大小写,转换,壹佰零伍,输入,105
From: https://blog.csdn.net/m0_51181022/article/details/139742518