码迷,mamicode.com
首页 > 其他好文 > 详细

将数字金额转成汉字大写的

时间:2018-04-19 14:56:21      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:[1]   ret   floor   mat   action   func   ++   处理   汉字   

 /** 数字金额大写转换(可以处理整数,小数,负数) */    
    function smalltoBIG(n)     
    {    
        var fraction = [‘角‘, ‘分‘];    
        var digit = [‘零‘, ‘壹‘, ‘贰‘, ‘叁‘, ‘肆‘, ‘伍‘, ‘陆‘, ‘柒‘, ‘捌‘, ‘玖‘];    
        var unit = [ [‘元‘, ‘万‘, ‘亿‘], [‘‘, ‘拾‘, ‘佰‘, ‘仟‘]  ];    
        var head = n < 0? ‘欠‘: ‘‘;    
        n = Math.abs(n);    
      
        var s = ‘‘;    
      
        for (var i = 0; i < fraction.length; i++)     
        {    
            s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, ‘‘);    
        }    
        s = s || ‘整‘;    
        n = Math.floor(n);    
      
        for (var i = 0; i < unit[0].length && n > 0; i++)     
        {    
            var p = ‘‘;    
            for (var j = 0; j < unit[1].length && n > 0; j++)     
            {    
                p = digit[n % 10] + unit[1][j] + p;    
                n = Math.floor(n / 10);    
            }    
            s = p.replace(/(零.)*零$/, ‘‘).replace(/^$/, ‘零‘)  + unit[0][i] + s;    
        }    
        return head + s.replace(/(零.)*零元/, ‘元‘).replace(/(零.)+/g, ‘零‘).replace(/^整$/, ‘零元整‘);    
    }  

将数字金额转成汉字大写的

标签:[1]   ret   floor   mat   action   func   ++   处理   汉字   

原文地址:https://www.cnblogs.com/bagnliu/p/8882444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!