美文网首页
阿拉伯数字转中文-js函数

阿拉伯数字转中文-js函数

作者: 小飞牛牛 | 来源:发表于2022-10-28 16:54 被阅读0次
    function intToChinese(num) {
      const arr1 = ['零', '一', '二', '三', '四', '五', '六', '七', '八', '九'];
      const arr2 = ['','十', '百','千', '万','十','百', '千','亿', '十', '百', '千', '万','十','百', '千','亿' ];
      if (!num || isNaN(num)) return '零';
      const numStr = num.toString().split('');
      let result = '';
      for (let i = 0; i < numStr.length; i++) {
        const des_i = numStr.length - 1 - i;
        result = arr2[i] + result;
        const arr1_index = numStr[des_i];
        result = arr1[arr1_index] + result;
      }
      result = result.replace(/零(千|百|十)/g, '零').replace(/十零/g, '十');
      result = result.replace(/零+/g, '零');
      result = result.replace(/零亿/g, '亿').replace(/零万/g, '万');
      result = result.replace(/亿万/g, '亿');
      result = result.replace(/零+$/, '');
      result = result.replace(/^一十/g, '十');
      return result;
    }
    

    函数先准备了两个数组,对应中文数字和单位,然后通过将具体整数转成字符串,字符串切割成字符数组。
    通过循环来对每一个位进行拼接。
    然而拼接后的结果并不能直接使用,因为习惯的读法会有一些既定的规则,因此需要通过replace方法对一些不符合习惯的情况进行纠正。

    相关文章

      网友评论

          本文标题:阿拉伯数字转中文-js函数

          本文链接:https://www.haomeiwen.com/subject/cirftdtx.html