javascript - Intl.NumberFormat reformatting the currencySymbol - Stack Overflow

I'm using JS' Intl.Numberformat function, but is there a way I can replace the output that�

I'm using JS' Intl.Numberformat function, but is there a way I can replace the output that's now: ANG12.45 Format to: fl. 12.45 So replace the default currencyDisplay to a custom naming including a space between the symbol and value?

value = parseFloat(value);
var formatter = new Intl.NumberFormat('en-US', {
    style: 'currency',
    currency: 'ANG', 
    currencyDisplay: 'symbol',
    minimumFractionDigits: 2
});
return formatter.format(value);

I'm using JS' Intl.Numberformat function, but is there a way I can replace the output that's now: ANG12.45 Format to: fl. 12.45 So replace the default currencyDisplay to a custom naming including a space between the symbol and value?

value = parseFloat(value);
var formatter = new Intl.NumberFormat('en-US', {
    style: 'currency',
    currency: 'ANG', 
    currencyDisplay: 'symbol',
    minimumFractionDigits: 2
});
return formatter.format(value);
Share Improve this question edited Aug 6, 2023 at 14:22 Penny Liu 17.6k5 gold badges86 silver badges108 bronze badges asked May 14, 2018 at 9:42 user1469734user1469734 82114 gold badges52 silver badges94 bronze badges 3
  • Did you solve the problem? – camelsWriteInCamelCase Commented May 22, 2018 at 22:08
  • 1 Yes: return formatter.format(value).replace("ANG", "ƒ "); – user1469734 Commented May 23, 2018 at 11:05
  • Then you need to accept your own answer. – camelsWriteInCamelCase Commented May 23, 2018 at 12:11
Add a ment  | 

2 Answers 2

Reset to default 8
return formatter.format(value).replace("ANG", "ƒ ");

This can not be done with the Intl.NumberFormat object, because the value of the "currency" parameter must be in ISO 4217 currency codes list and there is no "FL" there.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743889008a4524549.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信