愿所有的美好和期待都能如约而至

带JS Intl的符号后的空格

发布时间:  来源:互联网  作者:匿名  标签:ecmascript-6 ecmascript-intl error Space after symbol with JS Intl exception IT资  热度:37.5℃

本文介绍了带JS Intl的符号后的空格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要使用NumberFormat of Intl设置货币格式,并在符号和数字之间使用空格””获取返回值。

new Intl.NumberFormat('pt-br', { style: 'currency', currency: 'USD' }).format(12345)
// "US$12.345,00"
new Intl.NumberFormat('pt-br', { style: 'currency', currency: 'BRL' }).format(12345)
// "R$12.345,00"

我想要的:”美元12.345,00″,”雷亚尔12.345,00″

有什么想法吗?

推荐答案

您可以使用replace进一步设置货币格式。

数据-lang=”js”数据-隐藏=”假”数据-控制台=”真”数据-巴贝尔=”假”>

var usd = new Intl.NumberFormat('pt-br', { style: 'currency', currency: 'USD' }).format(12345).replace(/^(D+)/, '$1 ');

var euro = new Intl.NumberFormat('pt-br', { style: 'currency', currency: 'EUR' }).format(12345).replace(/^(D+)/, '$1 ');
var deEuro = new Intl.NumberFormat('de', { style: 'currency', currency: 'EUR' }).format(12345).replace(/^(D+)/, '$1 ');


console.log(usd);
console.log(euro);
console.log(deEuro);

这篇关于带JS Intl的符号后的空格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,

勇敢去编程!

勇敢的热爱编程,未来的你一定会大放异彩,未来的生活一定会因编程更好!

TOP