Convert numbers to uppercase amounts with JavaScript

Source: Internet
Author: User

Project, use JavaScript to convert numbers to uppercase amounts, share them to everyone

12345678910111213141516171819202122232425262728293031323334 var digitUppercase = function(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(/^整$/, ‘零元整‘);};console.log(digitUppercase(7682.01)); //柒仟陆佰捌拾贰元壹分console.log(digitUppercase(7682));  //柒仟陆佰捌拾贰元整console.log(digitUppercase(951434677682.00)); //玖仟伍佰壹拾肆亿叁仟肆佰陆拾柒万柒仟陆佰捌拾贰元整

Convert numbers to uppercase amounts with JavaScript

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.